4 回答

TA貢獻(xiàn)1777條經(jīng)驗(yàn) 獲得超10個(gè)贊
其實(shí)簡(jiǎn)單粗暴的理解,
就是如果@RestController注解Controller,則返回的內(nèi)容就是Return 里的內(nèi)容。
例如:
@RestController
@RequestMapping
public class TestController {
@RequestMapping("/index")
public String index() {
return "user/hello";
}
}
頁面顯示的是user/hello字符串
如果@Controller注解Controller,則返回到指定頁面。
例如:
@Controller
@RequestMapping
public class TestController {
@RequestMapping("/index")
public String index() {
return "user/hello";
}
}
顯示user底下的hello頁面上的內(nèi)容

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超9個(gè)贊

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超6個(gè)贊
4.0重要的一個(gè)新的改進(jìn)是@RestController注解,它繼承自@Controller注解。4.0之前的版本,Spring MVC的組件都使用@Controller來標(biāo)識(shí)當(dāng)前類是一個(gè)控制器servlet。 使用這個(gè)特性,我們可以開發(fā)REST服務(wù)的時(shí)候不需要使用@Controller而專門的@RestController。 當(dāng)你實(shí)現(xiàn)一個(gè)RESTful web services的時(shí)候,response將一直通過response body發(fā)送。為了簡(jiǎn)化開發(fā),Spring 4.0提供了一個(gè)專門版本的controller。下面我們來看看@RestController實(shí)現(xiàn)的定義: @Target(value=TYPE) @Retention(value=RUNTIME) @Documented @Controller @ResponseBody public @interface RestController 官方解釋: A convenience annotation that is itself annotated with @Controller and @ResponseBody. Types that carry this annotation are treated as controllers where @RequestMapping methods assume @ResponseBody semantics by default. ...4.0重要的一個(gè)新的改進(jìn)是@RestController注解,它繼承自@Controller注解。4.0之前的版本,Spring MVC的組件都使用@Controller來標(biāo)識(shí)當(dāng)前類是一個(gè)控制器servlet。 使用這個(gè)特性,我們可以開發(fā)REST服務(wù)的時(shí)候不需要使用@Controller而專門的@RestController。 當(dāng)你實(shí)現(xiàn)一個(gè)RESTful web services的時(shí)候,response將一直通過response body發(fā)送。為了簡(jiǎn)化開發(fā),Spring 4.0提供了一個(gè)專門版本的controller。下面我們來看看@RestController實(shí)現(xiàn)的定義: @Target(value=TYPE) @Retention(value=RUNTIME) @Documented @Controller @ResponseBody public @interface RestController 官方解釋: A convenience annotation that is itself annotated with @Controller and @ResponseBody. Types that carry this annotation are treated as controllers where @RequestMapping methods assume @ResponseBody semantics by default. 注解本身使用@Controller和@ResponseBody注解。使用了這個(gè)注解的類會(huì)被看作一個(gè)controller-使用@RequestMapping的方法有一個(gè)默認(rèn)的@ResponseBody注解。 @ResponseBody – As of version 4.0 this annotation can also be added on the type level in which case is inherited and does not need to be added on the method level. @ResponseBody也可以加到類一級(jí),通過繼承方法一級(jí)不需要添加。
- 4 回答
- 0 關(guān)注
- 3306 瀏覽
添加回答
舉報(bào)