美文网首页
2020-03-30 @RestController与@Cont

2020-03-30 @RestController与@Cont

作者: SherrinfordL | 来源:发表于2020-03-30 11:07 被阅读0次

如果@RestController注解Controller,则返回的内容就是Return 里的内容。
例如:
@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页面上的内容
来自百度:https://zhidao.baidu.com/question/1610921295047549307.html

相关文章

网友评论

      本文标题:2020-03-30 @RestController与@Cont

      本文链接:https://www.haomeiwen.com/subject/shimuhtx.html