时间:2021-05-19
(1)添加maven依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>(2)thymeleaf模板默认寻找resources下,templates文件夹放html页面,static文件夹放css及js
(3)引入js,需要使用如下格式
<html lang="en" xmlns:th="http://.js}"></script><script type="text/javascript" th:src="@{/js/index.js}"></script><body><h2>Hello World!</h2></body></html>(4)controller代码如下
package springboot.controller; import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping; @Controllerpublic class HtmlController { @RequestMapping("/show") public String show() { return "aaa"; }}(1)添加jsp的maven依赖
<dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <scope>provided</scope></dependency><dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId></dependency>注:返回jsp需要把spring-boot-starter-thymeleaf注释掉
(2)在controller里添加寻找jsp页面的视图解析器
@Beanpublic InternalResourceViewResolver viewResolver() { InternalResourceViewResolver viewResolver = new InternalResourceViewResolver(); viewResolver.setPrefix("/WEB-INF/"); viewResolver.setSuffix(".jsp"); return viewResolver;}(3)结构图如下
(4)controller代码如下
package springboot.controller; import org.springframework.context.annotation.Bean;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.servlet.view.InternalResourceViewResolver; @Controllerpublic class JspController { @RequestMapping("/test") public String index() { return "home"; } @Bean public InternalResourceViewResolver viewResolver() { InternalResourceViewResolver viewResolver = new InternalResourceViewResolver(); viewResolver.setPrefix("/WEB-INF/"); viewResolver.setSuffix(".jsp"); return viewResolver; }}注:返回html和jsp时使用@Controller注解
到此这篇关于springboot返回html和jsp的方法示例的文章就介绍到这了,更多相关springboot返回html和jsp内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文介绍了SpringBoot中使用JSP的方法示例,分享给大家,具体如下:依赖:org.springframework.bootspring-boot-sta
1.springboot不支持jsp打jar包,jsp只能打war包.方法:warorg.springframework.bootspring-boot-mav
前言这几天在集中学习Springboot+Shiro框架,因为之前view层用jsp比较多,所以想在springboot中配置jsp,但是springboot官
1.在jsp中用include指令引入HTML文件时遇到的问题:jsp、html都可以正确的显示,当jsp引入html时访问jsp页面HTML出现乱码,jsp原
springboot对于jsp支持的限制对于jsp的支持,SpringBoot官方只支持了war的打包方式,不支持fatjar。参考官方文档:https://d