Re: Load Struts2 configuration from DB

2012-11-13 Thread Ken McWilliams
If struts fails to find the action configuration it will try to use an instance of com.opensymphony.xwork2.UnknownHandlerManager to create a valid configuration. So this seems like the extension point I need. On Tue, Nov 13, 2012 at 12:38 AM, Ken McWilliams wrote: > I thought it would be interes

Load Struts2 configuration from DB

2012-11-12 Thread Ken McWilliams
I thought it would be interesting if I could create an interceptor stack from already defined interceptors and store that definition in a database. I also wanted to store action mappings (packages, actionName, method) along with the name of the class which was to be associated with the action. Any