Hi!
I have the following bean definition in my XML which works fine in M4:
The idea behind this is to have a list that contains certain enums. As I said, this worked fine until today, when I tried the M5 release.Code:<bean id="beanId" class="de.mybean" autowire="autodetect"> <property name="myPropertyName"> <list> <value type="de.myJava5EnumType">BLABLA</value> <value type="de.myJava5EnumType">BLUBLU</value> [...]
Now I get a ClassNotFoundException for de.myJava5EnumType.
Am I doing something wrong? Is this behavior intentional?
All the best,
René


.
Reply With Quote