Spring Boot 的簡單教程(三) web頁面開發(JSP篇)

上個章節咱們講了web頁面開發的Thymeleaf開發。
如今咱們就須要說一下咱們之前經常使用的JSP頁面開發了,由於JSP沒法實現Spring Boot的多種特性,因此Spring Boot不推薦使用JSP進行頁面開發。html

JSP頁面開發

第一,須要在pom.xml中添加依賴文件。

<!--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>

第二,在application.yml中配置返回文件的路徑以及類型:

#這裏是端口號
server.port=8088
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp

第三,在main下面新建一個webapp文件夾,下面新建WEB-INF文件夾,在下面新建一個jsp文件夾,將頁面放到jsp文件夾下面便可。

clipboard.png

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>

第四,正常的書寫Controller方法便可。

clipboard.png

第五,訪問http://localhost:8088/index成功。

clipboard.png

相關文章
相關標籤/搜索