Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>It appears your "APP_ENCRYPTION_PASSWORD" property is not properly set as an environment variable. See <a href="http://docs.oracle.com/javase/tutorial/essential/environment/env.html" rel="nofollow noreferrer">this</a> link to check if it has been properly set as an environment variable. To check if there is a problem with the rest of your configuration, change <code>&lt;property name="passwordEnvName" value="APP_ENCRYPTION_PASSWORD" /&gt;</code> to <code>&lt;property name="password" value="YOUR_PLAIN_TEXT_PASSWORD_HERE" /&gt;</code> and replace YOUR_PLAIN_TEXT_PASSWORD_HERE with your plain text password to test if the rest of your configuration is working.</p> <p>To set APP_ENCRYPTION_PASSWORD as an environment variable in Windows XP see this <a href="http://support.microsoft.com/kb/310519" rel="nofollow noreferrer">link</a>.</p> <p>Alternatively, you can pass the password in as a vm argument when you run your program. If it is a standalone program, you will pass it like <code>java ClassWithMain -DAPP_ENCRYPTION_PASSWORD=your_password</code>. If it is a web application, you will have to pass the same arguments when starting your server. See <a href="https://stackoverflow.com/questions/6225682/passing-jvm-arguments-to-tomcat-when-running-as-a-service">this</a> question on SO on how to do that for tomcat. Then in your spring configuration, replace <code>&lt;property name="passwordEnvName" value="APP_ENCRYPTION_PASSWORD" /&gt;</code> with <code>&lt;property name="passwordSysPropertyName" value="APP_ENCRYPTION_PASSWORD" /&gt;</code>.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload