Anyone ever seen this error with ColdSpring?
The ISLAZYINIT argument passed to the createBeanDefinition function is not of type boolean.
This is happening after restarting the CF service, and when it's attempting to do something like this in onApplicationStart
beanFactory = createObject("coldspring.beans.DefaultXmlBeanFactory").init(defaultProperties=stuCsConfig);
beanFactory.loadBeans(expandPath("/shared/config/coldspring-services.xml"));
The contents of that coldspring-services.xml file looks something like:
<bean id="PageHeader" class="path.to.PageHeader" singleton="true" lazy-init="false">
<constructor-arg name="fooBar">
<value>${fooBar}</value>
</constructor-arg>
</bean>
for a few dozen similarly constructed beans, some set to lazy-init=false
, some set to lazy-init=true
.
Nothing particularly obvious in the code has changed recently, and I'm wondering if it's possibly a problem with the Java JVM, or something that could be set in CF Admin such as caching. Anyone seen this before or has a suggestion?