在spring配置文件中寫入以下web
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/" p:suffix=".jsp" />spring
InternalResourceViewResolver :將解析controller層返回的視圖名稱app
p:prefix 指定前綴jsp
p:suffix 指定後綴blog
例如在controller層方法中:servlet
@RequestMapping("/text")
public String textOne(String contactid) {
String xx = "hello";
return xx;
}it
這將會返回/hello.jspclass
若不想被解析,能夠在方法上加上@ResponseBody配置
例如:方法
@RequestMapping("/text")
@ResponseBody
public String textOne(String contactid) {
String xx = "hello";
return xx;
}
這就返回:hello
想了解具體SpringMVC視圖解析器,能夠看看這個http://haohaoxuexi.iteye.com/blog/1770554