天天看點

關于springboot中的web項目不能通路templates中的靜态資源

最近在建立一個springboot的簡單的web工程的時候,把welcome.html放到templates中的檔案夾中去.啟動項目之後,就是通路不到該html頁面,最終自己在該resources下重新建立了一個檔案夾,并把html檔案扔到改檔案夾下,這才通路成功,application.yml檔案如下

spring.datasource.url = jdbc:mysql://localhost:3306/demo
spring.datasource.username = root
spring.datasource.password = root
spring.datasource.driverClassName = com.mysql.jdbc.Driver
spring.datasource.max-active=20
spring.datasource.max-idle=8
spring.datasource.min-idle=8
spring.datasource.initial-size=10

spring.resources.static-locations=classpath:/view/
spring.mvc.view.suffix=.html      

繼續閱讀