源码或觉得有帮助请点赞关注收藏后评论区留言~~
尽管Spring Boot建议使用HTML完成动态页面,但也有部分Java Web应用使用JSP完成动态页面。下面介绍Spring Boot如何集成JSP技术
环境配置不再赘述 有疑问可以进我主页看前面的博客
1:修改pom.xml文件 添加Servlet Tomcat和JSTL依赖
因为在JSP页面中使用EL和JSTL标签显示数据,所以在pom.xml文件中,除了添加Servlet和Tomcat依赖外,还需要添加JSTL依赖 具体代码如下
<?xml version="1.0" encoding="UTF-8"?>
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
-<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.6.RELEASE</version>
<relativePath/>
<!-