This is a cross post with http://stackoverflow.com/questions/13680425/read-only-fields-in-spring-roo-or-spring-web-mvc
I have what appears to be a common problem within spring-mvc. Several of my...
Type: Posts; User: Wesley Acheson; Keyword(s):
This is a cross post with http://stackoverflow.com/questions/13680425/read-only-fields-in-spring-roo-or-spring-web-mvc
I have what appears to be a common problem within spring-mvc. Several of my...
I got it all working except for the @RequestMapping problem thanks guys. I've implemented as generically as possible in case anyone finds it useful its at...
How is the controller method name resolved? I've looked but I can't see anything should the handler method be returning the controller method rather than the controller?
Sorry to digress but what...
Your controller accepts GET requests but your form uses POST. You can change your form to use GET (not recommended) or change your @RequestMapping.
@RequestMapping(value =...
I agree in principal however I'm intrested in doing this the "right" way as its my own project not a work project.
It irritates me that the controller will have a different format to the other...
Thanks Martin.
In the end I changed the class to look like this.
public class DatabasePageUrlHandlerMapping extends AbstractUrlHandlerMapping implements PriorityOrdered {
...
Hi I'm trying to do database driven controller mappings so that they can change at runtime.
So far what I have is as follows.
Custom Handler Adaptor which can always be optimised later.
...
Hi I've just started to attempt a new project using Roo.
My initail impressions after getting used to the shock of seeing empty class files are very favourable. However I've only really just...