Search:

Type: Posts; User: oxcar; Keyword(s):

Search: Search took 0.01 seconds.

  1. I just used @RequestMapping( value = "" ) ...

    I just used


    @RequestMapping( value = "" )

    instead of


    @RequestMapping( value = "", method = RequestMethod.GET )
  2. I found it !! My problem was in the Spring...

    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...
  3. I tell you it's this way ... I don't see...

    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...
  4. Hi, In Spring MVC if you dont specify POST,...

    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
  5. works after GET but not after POST

    Hi,

    I'm using Spring MVC, JSP for a webapp

    I have a Controller with this method:




    ...
  6. Replies
    1
    Views
    881

    I have the same problem. I'm totally lost.

    I have the same problem. I'm totally lost.
  7. Replies
    2
    Views
    910

    Hi, I just started from scratch. Now I use...

    Hi,

    I just started from scratch. Now I use spring security instead of acegi.

    But thanks anyway.
  8. Replies
    2
    Views
    910

    objectDefinitionSource

    Hi ... I'm using



    <bean id="filterSecurityInterceptor" class="org.acegisecurity.intercept.web.FilterSecurityInterceptor">
    <property name="authenticationManager" ref="authenticationManager"...
  9. Replies
    1
    Views
    4,034

    http://www.acegisecurity.org/dbinit.txt

    http://www.acegisecurity.org/dbinit.txt
  10. Spring Framework 2.5.3 form:input tag brakes previous version 2.5

    I changed today the version.

    I have:



    @RequestMapping( "/detailAction.do" )
    public ModelAndView detalleDelegacion(@ModelAttribute MyObject o) {

    ModelMap model = new ModelMap();
  11. Replies
    1
    Views
    3,668

    Migration from 2.5 to 2.5.3

    I changed today the version.

    I have:



    @RequestMapping( "/detailAction.do" )
    public ModelAndView detalleDelegacion(@ModelAttribute MyObject o) {

    ModelMap model = new ModelMap();
  12. Thread: Custom tag

    by oxcar
    Replies
    2
    Views
    850

    That's a good solution. But it could be better...

    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"...
  13. Thread: Custom tag

    by oxcar
    Replies
    2
    Views
    850

    Custom tag

    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...
Results 1 to 13 of 13