溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

spring boot結(jié)合jsp的使用示例

發(fā)布時(shí)間:2021-07-27 09:35:21 來(lái)源:億速云 閱讀:172 作者:小新 欄目:編程語(yǔ)言

這篇文章將為大家詳細(xì)講解有關(guān)spring boot結(jié)合jsp的使用示例,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

引入依賴

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<!-- jstl是?個(gè)JSP標(biāo)簽集合,它封裝了JSP應(yīng)?的通?核?功能。 -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>

<!-- tomcat-embed-jasper主要?來(lái)?持JSP的解析和運(yùn)?。 -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>

application.properties中配置前端位置和后綴

這里有個(gè)坑,注意如果pom引入了spring-boot-starter-thymeleaf需要去掉,在返回視圖的時(shí)候會(huì)有沖突。

ui即你在WEB-INF下建立的jsp文件存放的文件夾名稱

#指定前端模板文件位置
spring.mvc.view.prefix:/WEB-INF/ui/
#指定前端模板文件后綴
spring.mvc.view.suffix:.jsp

在ui下新建一個(gè)示例jsp,test.jsp

<!DOCTYPE html>
<html lang="en">
  <body>
    Time:${time}
    <br>
    Message:${message}
  </body>
</html>

新建一個(gè)示例controller

@Controller
public class TestJspController {
  @GetMapping("/")
  public String forward(Map<String,Object> model){
    //map傳遞參數(shù)到前端輸出
    model.put("time",new Date());
    model.put("message","kyoxue");
    //直接寫(xiě)JSP文件的名字
    return "test";
  }
}

右鍵工程,maven clean intsall

右鍵springboot入口主程序

@SpringBootApplication
public class DemoApplication {
  public static void main(String[] args) {
    SpringApplication.run(DemoApplication.class, args);
  }
}

run as - spring boot app啟動(dòng)項(xiàng)目過(guò)程

http://localhost:8084/demo/測(cè)試訪問(wèn)

spring boot結(jié)合jsp的使用示例

關(guān)于“spring boot結(jié)合jsp的使用示例”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI