本博客日IP超过2000,PV 3000 左右,急需赞助商。
极客时间所有课程通过我的二维码购买后返现24元微信红包,请加博主新的微信号:xttblog2,之前的微信号好友位已满,备注:返现
受密码保护的文章请关注“业余草”公众号,回复关键字“0”获得密码
所有面试题(java、前端、数据库、springboot等)一网打尽,请关注文末小程序
腾讯云】1核2G5M轻量应用服务器50元首年,高性价比,助您轻松上云
很多人给我留言说,SpringBoot 为什么跳转不到 jsp 页面。我从第一天就告诉了大家,SpringBoot 不建议大家使用 jsp、html等来实现他们的页面。推荐使用模板引擎,首推 thymeleaf。
要实现 Controller 跳转到 html 页面,我们首先需要引入 thymeleaf 模板引擎模块的支持。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
然后在 application.properties 中配置模板引擎的页面放置的位置(默认在src/main/resources/templates下,也可以不用配置,使用默认的)。
spring.thymeleaf.prefix=classpath:/templates/
然后在 templates 下建立 xttblog.html 文件。内容如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"/> <title>Title</title> </head> <body> <h1> 我是业余草:www.xttblog.com </h1> </body> </html>
最后在 Controller 中实现跳转:
@Controller public class HelloController { @RequestMapping("/test") public String test(){ return "xttblog"; } }
http://localhost:8080/xttblog 即可访问页面。
return 返回的内容和 SpringMVC 其实是一样的。
return "xttblog":代表会直接去 resources/templates 目录下找相关的文件。
return "redirect:xttblog":代表转发到对应的controller,这个就相当于重定向。关于更多的案例,我们后面会一篇一篇的来。
前面几篇文章忘记留源码了。现在所有关于 SpringBoot 的项目源码我已经共享了。关注我的微信公众号,回复“springboot源码”即可获取案例源码。
最后,欢迎关注我的个人微信公众号:业余草(yyucao)!可加作者微信号:xttblog2。备注:“1”,添加博主微信拉你进微信群。备注错误不会同意好友申请。再次感谢您的关注!后续有精彩内容会第一时间发给您!原创文章投稿请发送至532009913@qq.com邮箱。商务合作也可添加作者微信进行联系!
本文原文出处:业余草: » SpringBoot 实现页面跳转