spring boot 項目頁面顯示不出來

在網上看見一種關於springboot的項目結構,並模仿着寫了一下,導致無法訪問頁面,在網上查閱了相關問題及解決辦法,特此留下記錄。

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
 
Fri Jun 25 9:19:17 CST 2019
There was an unexpected error (type=Not Found, status=404).
No message available

原因1:
Application啓動類的位置不對.要將Application類放在最外側,即包含所有子包
原因:spring-boot會自動加載啓動類所在包下及其子包下的所有組件.

原因2:
在springboot的配置文件:application.yml或application.properties中關於視圖解析器的配置問題:
當pom文件下的spring-boot-starter-paren版本高時使用:
spring.mvc.view.prefix/spring.mvc.view.suffix
當pom文件下的spring-boot-starter-parent版本低時使用:
spring.view.prefix/spring.view.suffix

原因3:
控制器的URL路徑書寫問題
@RequestMapping(“xxxxxxxxxxxxxx”)
實際訪問的路徑與”xxx”不符合.

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章