I have a standalone enum type defined, something like this:
package my.pkg.types; public enum MyEnumType { TYPE1, TYPE2 }
Now, I w
Have you tried just "TYPE1"? I suppose Spring uses reflection to determine the type of "type" anyway, so the fully qualified name is redundant. Spring generally doesn't subscribe to redundancy!