开发者

spring controller call from javascript. annotations with spring

Is it possible to call a spring controller from javascript included in a jsp? I'm trying to call it like this:

form.action='${pageContext.request.contextPath}/spring/myController';

I can see that the control passes throught the lines, but nothing is happening.

Also I get messages like get开发者_如何学编程 or post is not supported. when I submit the form with a post method I get error message post is not supported. I use the annotations like this in controller.

@RequestMapping(method = RequestMethod.GET)

How can I handle both get and post in spring controllers?


Your javascript is not actually calling anything. Rather, it is setting the "action" attribute of (I assume) a <form> element in your web page to some URL assembled by the JSP. The "call" to your server will happen later ... when the user clicks some button that causes the form to be submitted.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜