Spring Boot自定义属性配置文件开启提示
前言:有时候在Sping Boot项目中需要自定义属性。又想在配置文件(*.properties)中显示提示时。
测试环境:Sping Boot2x + Maven + Lombok
准备测试的配置类:
@Data
@Configuration
@ConfigurationProperties(prefix = "animal.default")
public class Animal {
private String name;
private String type;
}
使用@ConfigurationProperties(prefix = "animal.default")
自定义一个前缀。使用默认配置文件
我们可以看到这个时候在配置文件中输入是没有关于“animal.default”的任何提示。
现在我们通过添加配置则可以让它有显示。
1. 在启动类上添加@EnableConfigurationProperties
注解。如下所示:
@SpringBootApplication
@EnableConfigurationProperties
//@EnableConfigurationProperties({Animal.class}) 可以指定类,也可以不指定
public class TestProjectApplication {
public static void main(String[] args) {
SpringApplication.run(TestProjectApplication.class,args);
}
}
2. 使用Maven工具依次执行 clean 和 package 命令。在执行命令后可以看到下图:
现在我们再去配置文件中测试会发现已经有提示功能。如下图: