上個章節咱們講了web頁面開發的Thymeleaf開發。
如今咱們就須要說一下咱們之前經常使用的JSP頁面開發了,由於JSP沒法實現Spring Boot的多種特性,因此Spring Boot不推薦使用JSP進行頁面開發。html
<!--WEB支持--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--jsp頁面使用jstl標籤--> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency> <!--用於編譯jsp--> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <scope>provided</scope> </dependency>
#這裏是端口號 server.port=8088 spring.mvc.view.prefix=/WEB-INF/jsp/ spring.mvc.view.suffix=.jsp
index.jsp頁面內容:java
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>測試頁面</title> </head> <body> <h1>HELLO WORLD!!!</h1> </body> </html>