I just used
@RequestMapping( value = "" )
instead of
@RequestMapping( value = "", method = RequestMethod.GET )
Type: Posts; User: oxcar; Keyword(s):
I just used
@RequestMapping( value = "" )
instead of
@RequestMapping( value = "", method = RequestMethod.GET )
I found it !!
My problem was in the Spring Controller that was executed the jsp:include
It only accepted GET requests, so I changed the controller to accept POST requests too ... so jsp:include...
I tell you it's this way ...
I don't see any error on my container's log ... and yes ... there is a blank space where the jsp:include tag is placed ...
It makes no difference, it only...
Hi,
In Spring MVC if you dont specify POST, GET, etc ... it accepts request for any of them.
@RequestMapping( value = "", method = RequestMethod.GET )
accepts only GET
Hi,
I'm using Spring MVC, JSP for a webapp
I have a Controller with this method:
...
I have the same problem. I'm totally lost.
Hi,
I just started from scratch. Now I use spring security instead of acegi.
But thanks anyway.
Hi ... I'm using
<bean id="filterSecurityInterceptor" class="org.acegisecurity.intercept.web.FilterSecurityInterceptor">
<property name="authenticationManager" ref="authenticationManager"...
http://www.acegisecurity.org/dbinit.txt
I changed today the version.
I have:
@RequestMapping( "/detailAction.do" )
public ModelAndView detalleDelegacion(@ModelAttribute MyObject o) {
ModelMap model = new ModelMap();
I changed today the version.
I have:
@RequestMapping( "/detailAction.do" )
public ModelAndView detalleDelegacion(@ModelAttribute MyObject o) {
ModelMap model = new ModelMap();
That's a good solution.
But it could be better if it was a spring tag.
With fmt tag I use:
<fmt:formatNumber value="${number}" groupingUsed="true" minFractionDigits="2" maxFractionDigits="2"...
Hi,
I'm relatively new to Spring (1 month) and I'm really enjoying this framework. It just works.
But now I have a question. I'm using spring "form" taglib. It's really nice and covers most of...