not find template location: classpath:/templates/(please add some templates or check your Thymel

680 ワード

Spring Bootを起動すると警告が表示されます
WARN 6428 --- [  restartedMain] ion$DefaultTemplateResolverConfiguration : Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)

原因分析:templatesフォルダの下にhtml、jspまたはftlファイルアプリケーションがありません.propertiesプロファイルは次のとおりです.
spring.thymeleaf.check-template=true
spring.thymeleaf.check-template-location=true

それはあなたのtemplatesフォルダの下にhtml、jspあるいはftlファイルがあるかどうかをスキャンして、もしないならば警告を出してこの警告を処理しないことができて、プログラムの実行に対して処理方法に影響しません:trueをfalseに変えます
spring.thymeleaf.check-template=false
spring.thymeleaf.check-template-location=false