Application.properties中的SpringBoot未知属性

我已经使用嵌入式Tomcat + Thymeleaf模板引擎使用Spring Initializr生成了Spring Boot Web应用程序。

我将此属性放在了application.properties中

default.to.address=nunito.calzada@gmail.com

我正在使用Spring Tool Suite版本:3.8.4.RELEASE作为开发环境,但在编辑器中收到此警告 'default.to.address'

is an unknown property.

我应该将此属性放在另一个属性文件中吗?

回答:

这是因为它由STS属性编辑器打开,该编辑器除其他功能外还可以验证属性。将它包含在application.properties文件中没有什么害处,您甚至可以为该属性添加自己的元数据。

http://docs.spring.io/spring-boot/docs/current/reference/html/configuration-

metadata.html

以上是 Application.properties中的SpringBoot未知属性 的全部内容, 来源链接: utcz.com/qa/429382.html

回到顶部