1. 程式人生 > >springboot結合jsp採坑記

springboot結合jsp採坑記

網上找了一圈都沒有解決自己的問題

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.

Wed Nov 21 16:04:36 CST 2018
There was an unexpected error (type=Not Found, status=404).
No message available

 

上面這個肯的是url 地址連線錯誤

 

然後

spring boot 與jsp結合後執行起來,可以進入controller層但是不能返回正確的檢視

org.thymeleaf.exceptions.TemplateInputException: Error resolving template [helloworld], template might not exist or might not be accessible by any of the configured Template Resolvers

這個是jar匯入錯誤,我是因為沒有匯入這個jar

<!-- Tomcat Embed -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-tomcat</artifactId>
    <scope>provided</scope>
</dependency>

 我拉下來一個spring boot結合jsp的demo  而別人的是可以正常跑起來的,我比較了一下pom檔案才發現的

https://howtodoinjava.com/spring-boot/spring-boot-jsp-view-example/

就這個,程式碼直接拉下來就可以跑的