在Spring Boot中并不推荐使用jsp,如果想要在Spring Boot中使用jsp就需要做专门的配置了。
1. 创建webapp目录
在项目/main/目录下创建webapp目录,注意要是和resources、java同级。
创建好了直接在这个目录下新建jsp是不能创建的,如果硬要创建是没有jsp模板的,问题主要在于这个目录不是web资源目录,idea是不能自动识别的,所以咱们要把这个目录变成web资源目录。打开项目的Project Settings(快捷键:command+;),找到Web Resource Directories点击加号,再选择webapp目录点击OK,最后点击OK保存就好了。
2. 创建jsp文件
我创建了一个hello.jsp的文件,代码如下:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
hello jsp
</body>
</html>
3. 添加物理视图
打开pom.xml文件添加tomcat-embed-jasper依赖,这个依赖用于解析jsp文件。
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
然后在build中注册webapp资源目录
<resources>
<!--注册webapp资源目录-->
<resource>
<directory>src/main/webapp</directory>
<targetPath>META-INF/resources</targetPath>
<includes>
<include>**/*.*</include>
</includes>
</resource>
</resources>
4. 查看
运行项目在浏览器输入:http://localhost:8080/hello.jsp