Springboot快速集成jsp教程
虽然Springboot不提倡使用jsp页面,但是也是可以用的,只是需要额外的操作罢了,下面我将快速集成jsp页面。
1.使用Spring initializr快速创建一个Springboot项目
勾选Spring Web模块,特别注意,Springboot版本选择2.1.X的版本,不然会导致404错误
选择好项目位置后点击finish创建项目
2.创建完项目后,添加pom.xml依赖
<!--内置tomcat对Jsp支持的依赖,用于编译Jsp-->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
<!--JavaServer Pages Standard Tag Library,JSP标准标签库-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
然后在src/main目录下创建webapp目录,并添加一个index.jsp页面
index,jsp
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>index</title>
</head>
<body>
<h1>Hello Springboot</h1>
</body>
</html>
然后在application.properties文件下添加如下配置
spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp
创建controller包并且创建HelloController控制器进行测试
HelloController
@Controller
@RequestMapping("/test")
public class HelloController {
@RequestMapping("/hello")
public String hello(){
System.out.println("hello springboot");
return "index";
}
}
3.通过Test01Application启动项目,然后通过浏览器访问Controller
然后可以发现有404错误出现,但是可以看到项目已经找到了index.jsp页面
4.解决404错误
在idea右上角点击Edit Configurations
修改Test01Application的Environment中的Working directory为MODULE_WORKING_DIR
点击OK退出,然后重新启动项目,再次访问页面
可以看到index.jsp被成功访问,还可以直接通过index.jsp路径直接访问页面