标签:集成 map RestController SpringBoot success Controller thymeleaf import hello
场景:在做springBoot整合Theamleaf时,用了@RestController注解,在进行试图渲染的过程中,遇到试图没有渲染成功,找到了原因,记录一下。
第一种情况:使用@RestController注解
package com.example.demo; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import java.util.Map; @RestController public class HelloController { @ResponseBody @RequestMapping("/hello") public String hello(Map<String,Object> map){ // 默认要去classpath:templates下查找success.html map.put("hello","你好"); return "success"; } @RequestMapping("/success") public String success(Map<String,Object> map){ // 默认要去classpath:templates下查找success.html map.put("hello","你好"); return "success"; } }
访问路径结果:
第一个路径返回的是一个页面
第二个路径返回的是一个字符串
第二种情况:使用@Controller注解
package com.example.demo; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import java.util.Map; @Controller public class HelloController { @ResponseBody @RequestMapping("/hello") public String hello(Map<String,Object> map){ // 默认要去classpath:templates下查找success.html map.put("hello","你好"); return "success"; } @RequestMapping("/success") public String success(Map<String,Object> map){ // 默认要去classpath:templates下查找success.html map.put("hello","你好"); return "success"; } }
@RestController相当于@Controller+@ResponseBody
故如果用@RestController返回结果被@ResponseBody序列化成字符串了
需要使用@Controller而非@RestController
参考链接:https://blog.csdn.net/qq_38423256/article/details/118074957
标签:集成,map,RestController,SpringBoot,success,Controller,thymeleaf,import,hello 来源: https://www.cnblogs.com/longlyseul/p/16629676.html
本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享; 2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关; 3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关; 4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除; 5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。