Apologies for silly question and thanks in advance for your replies.
Why can't I read in a java.util.Properties bean? Lists, Maps, homemade beans no problem. The "proper" bean below is always empty when it is read in. There's no error in deploying.
What is missing?
Code:<bean id="proper" class="java.util.Properties"> <constructor-arg> <props> <prop key="one">numberone</prop> </props> </constructor-arg> </bean>


Reply With Quote