It looks like the secured tags in my webflows only function properly when the role name has the "ROLE_" prefix.
If I use this, I am let through correctly:
<secured attributes="ROLE_SUPER"/>
...
Type: Posts; User: tonyclyde; Keyword(s):
It looks like the secured tags in my webflows only function properly when the role name has the "ROLE_" prefix.
If I use this, I am let through correctly:
<secured attributes="ROLE_SUPER"/>
...
Thanks for the quick reply, sorry to hear that. I guess since im using someone elses model object my best bet will just be to make a wrapper class for it that takes List<String>
I tried turning on...
Im trying to bind a list of 5 optional checkboxes (so 0 to 5 values will be form submitted). I want these to bind into a model field of type List<MyEnumeration>, similar to what the Amenities do on...
I have an autowired component in my servlet context configuration called "sessionUtils". When I reference it from a flow without specifying a scope, like:
<evaluate...