-
Type: Bug
-
Status: Done
-
Priority: Medium
-
Resolution: Done
-
Affects Version/s: 1.14.1
-
Fix Version/s: 1.14.2
-
Component/s: appng-appngizer, appng-standalone
-
Labels:None
In appNGizer-servlet.xml, the following bean is defined:
<bean id="configurer" class="org.appng.appngizer.controller.AppNGizerConfigurer"> <property name="location" value="file://${APPNG_HOME}/WEB-INF/conf/appNG.properties" /> </bean>
On Startup ${APPNG_HOME} is replaced with the actual path, resulting in
<property name="location" value="file://c:\path\to\tomcat\webapps\ROOT/WEB-INF/conf/appNG.properties" />
Windows can not handle file://<drive>:\<path>, instead file:///<drive>:\<path> must be used.
See
https://msdn.microsoft.com/en-us/library/aa767731(v=vs.85).aspx