2021/01/21

[spring] Spring boot 無法顯示 jsp 網頁卻下載檔案

Spring boot 無法顯示 jsp 網頁卻下載檔案,一種奇妙的狀況。
開發環境為
  • spring-boot:2.6.5.RELEASE 
  • tomcat-embed:9.0.60
在 spring boot 環境下,建構好 jsp 網頁,啟動後應用程式正確開啟,接著打開  jsp 網頁時,無法正確的顯示 jsp,卻下載 jsp 檔案。搜尋後發現原來是缺少 dependency,只要補上下面的 dependency,jsp 就可以正常顯示。
<dependency>
    <groupId>org.apache.tomcat.embed</groupId>
    <artifactId>tomcat-embed-jasper</artifactId>
    <scope>provided</scope>
</dependency>
Reference
https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-jasper

沒有留言:

張貼留言