Is there some one knows?
Type: Posts; User: Springinger; Keyword(s):
Is there some one knows?
Hi,
I'm useing annotation method=RequestMethod.PUT in update in controller, and return a forward page which is annotationed by method=RequestMethod.GET, it throws exception: Request method 'PUT' not...
Hi,
I'm use Spring MVC rest in my project, when I import my templete in configration or ftl file, it says can't find the file
servlet.xml
<mvc:resources mapping="/custom.ftl"...
I have solved the problem with a hidden filed
http://www.springsource.org/download/community
Hi everybody,
I'm useing spring mvc and freemarker in my project, I want to find some informations about spring tags in freemarker such as how to use each tag and some demos...
Can you give me...
You can do it in you Controller as:
@Controller
class PersonUpdateController {
@RequestMapping(value = "\person", method = RequestMethod.POST)
public update(@ModelAttribute("person")...
In reference, form:form is used to use put/delete method, but how to use it in freemarker?
I use it as <form method="put" action=""> but it throw exception:
type Status report
message...
Check out this post: http://forum.springsource.org/showthread.php?134401-How-to-use-ContentNegotiationStrategy-in-Spring-MVC3-2
thank you very much,it works!
Hi together,
I used to config ContentNegotiatingViewResolver in Spring3.1 with inject mediaTypes as
<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
...