Andrew, will it then be possible to have more than one URL bound to the same ActionBean ? I ask because I currently work on a simple Stripes based CRUD application, and I'm using the same ActionBean for all actions (Create, Read, Update, Delete). I want read to be publicly available, but the others should be J2EE protected with a security-constraint. So would it be possible to have 2 URLs , like : /nonpub/MyActionBean /pub/MyActionBean Where only the first one is protected. Of course, there is some additional security checking required in the ActionBean.
regards, Harry 2008/11/26 Andrew Jaquith <[EMAIL PROTECTED]> > FYI -- > > Ben Gunter @ the Stripes project just committed a new enhancement that I'd > requested in August, namely the ability to create ActionBean URLBindings > from arbitrary String patterns. It will ship in 1.5.1. > > This is excellent news because it makes it possible for third parties (like > us) to fairly easily create, for example, URLBinding patterns that are read > from text files. This gives us an option for binding URLs to ActionBeans > other than the default method, which is to get them from class annotations. > My intent is to create a FileActionResolver to do this, at a slightly later > point in the 3.0 dev cycle. > > For the Americans on this list -- happy Thanksgiving. > > Andrew >
