This content has been marked as final.
Show 2 replies
-
1. Re: Not possible to make boolean values configurable in context
ffang Aug 18, 2013 8:14 PM (in response to radomir.kadlec)Hi,
This is a known issue of spring. As a workaround, you can try to append a fragment to your bundle which can extend a custom application creator, from which you can do something like
beanDefinitionReader.setValidationMode(XmlBeanDefinitionReader.VALIDATION_NONE);
for your customerized XmlApplicationContext, to disable the schema validation, the solution for OSGI-364[1] & OSGI-367[2] should be helpful.
http://jira.springframework.org/browse/OSGI-364
http://jira.springframework.org/browse/OSGI-367
Freeman
-
2. Re: Not possible to make boolean values configurable in context
radomir.kadlec Aug 19, 2013 3:25 AM (in response to ffang)Thank you Freeman for all the good tips.
Radomir