@ResponseBody

@ResponseBody注解可被应用于方法上,标志该方法的返回值(更正,原文是return type,看起来应该是返回值)应该被直接写回到HTTP响应体中去(而不会被被放置到Model中或被解释为一个视图名)。举个例子:

package com.imooc.mvcdemo.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@RequestMapping("/hello")
public class HelloMvcController {
	
	@RequestMapping("/mvc")
	@ResponseBody
	public String helloMvc() {
		
		return "home";
	}

}

如果这样执行的话,就是在屏幕直接输出hello。

如果将@RequestMapping去掉就是返回一个jsp页面 

 

你可能感兴趣的:(常见错误解决,Java合集)