@Controller和@RestController的区别?
创始人
2024-03-29 21:59:54
0

本文为joshua317原创文章,转载请注明:转载自joshua317博客 @Controller和@RestController的区别? - joshua317的博客

@Controller和@RestController的区别?

在springboot开发中控制层使用注解@Controller时,加有@GetMapping(@PostMapping或@RequestMapping)注解的方法返回值对应的是一个视图,而使用@RestController返回值对应的是json数据,也就是说@RestController注解相当于@ResponseBody+@Controller合在一起的作用。

如果只使用@RestController注解控制器xxController,方法中只会返回return中的内容,视图解析器InternalResourceViewResolver不会作用,不会返回jsp,html页面。

如果返回到指定页面的话,则需要在xxController上添加注解@Controller并且要配合视图解析器InternalResourceViewResolver。如果是XML,JSON或自定义枚举类型内容到页面,需要在请求的方法上添加@ResponseBody注解

接下来我们使用thymeleaf模板引擎为例:

引入thymeleaf模板引擎依赖

org.springframework.bootspring-boot-starter-thymeleaf

首先在application.properties或者application.yml设置thymeleaf的配置,可以再对应的文件中查看ThymeleafProperties.class

spring:thymeleaf:suffix: .htmlprefix: classpath:/templates/

1. @Controller的测试

在控制层创建TestController的类

package com.joshua317.myweb.controller;import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;@Controller
public class TestController {@GetMapping("/hello/controller")public String index() {return "hello/controller";}
}

在模板templates目录下,创建hello/controller.html




Title




查看结果,会发现执行到了hello/controller.html页面

2. @RestController的测试

直接把TestController的类中,@Controller注解换成@RestController注解

package com.joshua317.myweb.controller;import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;@RestController
public class TestController {@GetMapping("/hello/controller")public String index() {return "hello/controller";}
}

重新测试执行,结果为:

也就是说使用RestController注解是无法返回jsp页面或者html,配置的视图解析器 InternalResourceViewResolver不起作用,返回的内容就是Return 里的内容。

3. @Controller+@ResponseBody的测试

如果在使用@Controller注解时,想要返回JSON,XML或自定义mediaType内容到页面,则需要在对应的方法上加上@ResponseBody注解。

package com.joshua317.myweb.controller;import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;@Controller
public class TestController {@GetMapping("/hello/controller")public String index() {return "hello/controller";}@GetMapping("/hello/responsebody")@ResponseBodypublic String respone() {return "responsebody";}
}

查看结果:

本文为joshua317原创文章,转载请注明:转载自joshua317博客 @Controller和@RestController的区别? - joshua317的博客

相关内容

热门资讯

喜欢穿一身黑的男生性格(喜欢穿... 今天百科达人给各位分享喜欢穿一身黑的男生性格的知识,其中也会对喜欢穿一身黑衣服的男人人好相处吗进行解...
发春是什么意思(思春和发春是什... 本篇文章极速百科给大家谈谈发春是什么意思,以及思春和发春是什么意思对应的知识点,希望对各位有所帮助,...
网络用语zl是什么意思(zl是... 今天给各位分享网络用语zl是什么意思的知识,其中也会对zl是啥意思是什么网络用语进行解释,如果能碰巧...
为什么酷狗音乐自己唱的歌不能下... 本篇文章极速百科小编给大家谈谈为什么酷狗音乐自己唱的歌不能下载到本地?,以及为什么酷狗下载的歌曲不是...
家里可以做假山养金鱼吗(假山能... 今天百科达人给各位分享家里可以做假山养金鱼吗的知识,其中也会对假山能放鱼缸里吗进行解释,如果能碰巧解...
华为下载未安装的文件去哪找(华... 今天百科达人给各位分享华为下载未安装的文件去哪找的知识,其中也会对华为下载未安装的文件去哪找到进行解...
四分五裂是什么生肖什么动物(四... 本篇文章极速百科小编给大家谈谈四分五裂是什么生肖什么动物,以及四分五裂打一生肖是什么对应的知识点,希...
怎么往应用助手里添加应用(应用... 今天百科达人给各位分享怎么往应用助手里添加应用的知识,其中也会对应用助手怎么添加微信进行解释,如果能...
客厅放八骏马摆件可以吗(家里摆... 今天给各位分享客厅放八骏马摆件可以吗的知识,其中也会对家里摆八骏马摆件好吗进行解释,如果能碰巧解决你...
苏州离哪个飞机场近(苏州离哪个... 本篇文章极速百科小编给大家谈谈苏州离哪个飞机场近,以及苏州离哪个飞机场近点对应的知识点,希望对各位有...