我对@RequestMapping和@RequestBody的实际操作有一些疑问。我的代码如下:
@Controller
public class CoreController {
@Autowired
LoggerExtension log;
@Autowired
DoService doService;
@RequestMapping(value="/method.do")
public @ResponseBody String getActionResponse(HttpServletRequest request,HttpServletResponse response){
String action = request.getParameter("action");
String gender = request.getParameter("gender");
String language = request.getParameter("language");
if("getLanguage".equalsIgnoreCase(action)){
returnResponse = doService.getUserLanguage(msisdn);
}
}
return returnResponse;
}
我想知道上面的代码是如何工作的?请帮我清除这个概念...
答案 0 :(得分:2)
Spring文档很好地解释了@RequestMapping
使用@RequestMapping注释来映射诸如的URL /约会到整个类或特定的处理程序方法。
在您的特定情况下,@RequestMapping(value="/method.do")
表示URI /method.do
的http请求(在任何方法中)(例如http://myserver.com/app/method.do
)将由带注释的方法{{1}处理和Spring将自动绑定参数。
至于getActionResponse(HttpServletRequest,HttpServletResponse)
,它说:
这个注释可以放在一个方法上并指示返回 类型应直接写入HTTP响应主体
在您的特定情况下,这意味着注释方法的返回字符串将被写入响应输出流或写入器,就像您调用类似这样的内容:
@ResponseBody
请参阅ServletResponse#getWriter()或ServletResponse#getOutputStream()
答案 1 :(得分:1)
根据web.xml的xml文件中表示的'url mapping',它的作用非常简单
它将“method.do”附加到它
所以例如: 我的应用程序名称是“Hello”,下面是我的web.xml
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
现在您提到的网址为localhost/rest/method.do
@RequestMapping
是告诉处理servlet的一种方式,strign的响应是实际的响应。理想情况下,您将拥有转发输出的视图。
但在这种情况下,您的响应是视图,因此注释@RequestMapping
答案 2 :(得分:1)
您正在研究使用Spring创建WebService的方法
@RequestMapping注释将值中的路径映射到方法。
所以(如果你打电话给以下网址,假设你的服务器是在localhost上设置的:8080,你的战争名为'上下文'):
http://localhost:8080/war/method.do
应用程序服务器和spring将在您的类上调用getActionResponse方法。
通常getActionResponse的返回值将被视为url,因此如果返回String'text',服务器将重定向到/ war / text。
@ResponseBody注释告诉spring,返回的String实际上应该作为响应的消息返回,所以在你进行调用之后,服务器将返回一个带有消息体“text”的200 OK响应。
编辑:忘记了web.xml中的基本映射,请参阅Jatin的回答。 所以不是htt'p:// localhost:8080 / war / method.do而是htt'p:// localhost:8080 / war / rest / method.do