I'm using Spring MVC in my application and has request mapping of two kinds:
*.html mapped for jsp views
*.action mapped to RESTful methods which returns json and used for ajax only.
...
Type: Posts; User: dannylesnik; Keyword(s):
I'm using Spring MVC in my application and has request mapping of two kinds:
*.html mapped for jsp views
*.action mapped to RESTful methods which returns json and used for ajax only.
...
rwinch, problem solved. Thank you so much.
I configured Spring Security with remember-me option.
<security:global-method-security secured-annotations="enabled" />
<security:http pattern="/login.html" security="none"/>
...
I'm trying to create remember-me based on persistent token approach feature. as my dataSource I have mongoDB. In order to store tokens in as collection I override PersistentTokenRepository class and...
Rossen, thank you for your feedback.
I've tried the following:
@RequestMapping(value="/success.html", method=RequestMethod.GET)
public String successView(HttpServletRequest request){...
Thank you for reply. Actually, I haven't found any documentation how to fetch the values in GET request after redirect. with Spring 3.0 I used this solution. So I thought I can fetch values the same...
I'm trying to implement RedirectAttributes feature in Spring MVC 3.1-Release
I'm sending simple form to Post URL and would like to see the the value I'm sending in redirect:
my Controller looks...
Hello,
I'm trying to integrate simple web service tutorial into my existing Sprng MVC application.
I'm using Dispatcher Servlet instead of Message Dispatcher servlet, because I would like to...