常见的几种配置方式和优先级说明见下面所示:
命令行参数来自java:comp/env的JNDI属性Java系统属性System.getProperties()操作系统环境变量RandomValuePropertySource配置的random.*属性值jar外部的application-{profile}.properties或application.yml(带spring.profile)配置文件jar内部的application-{profile}.properties或application.yml(带spring.profile)配置文件jar外部的application.properties或application.yml(不带spring.profile)配置文件jar内部的application.properties或application.yml(不带spring.profile)配置文件@Configuration注解类上的@PropertySource通过SpringApplication.setDefaultProperties指定的默认属性启动命令: java -jar *.jar --myname="KevinSun"其他java 系统属性,操作系统属性都是类似处理方案如果不想通过命令行启动,可以用下面方法取消。
SpringApplication.setAddCommandLineProperties(false);
不同的环境可能需要不同配置,可以通过application-{profile}.properties来解决这个问题.首先:新建application-dev.properties 文件,增加需要参数启动命令:
java -jar *.jar --spring.profiles.active=devapplication-{profile}.properties 文件和默认的application.properties的加载方式本质是一致的,可以参照4中的内容.需要注意的是:application.properties 会首先被加载.
然后:从application-{profile}.properties中获取替换,所以一些基本固定的值可以写在application.properties, 然后个性化配置写在application-{profile}.properties中。
SpringBoot中默认的从application.properties文件中加载参数,大量情况下默认是写在这个文件中的.
application.properties 读取的优先级file:./config/ 当前jar目录的configfile:./ 当前jar目录classpath:/config/ jar包中classpath的 config目录下classpath:/ jar包中classpath 路径下排列的顺序 就是 加载的优先级,application.properties只会被加载一次如果你觉得 application.properties不够酷,你可以定义自己的文件名, 这里也有两种方式
使用命令java -jar *.jar --spring.config.name=myproject这时就会加载myproject.propertie并且 application.properties不会被加载的.
使用命令java -jar *.jar spring.config.location=classpath:/myproject.properties这种情况下 application.properties也是会被加载,使用方式application-{profile}.properties相同.
spring.data.mongodb.host=192.168.1.1spring.data.mongodb.port=1234spring.data1.mongodb.host=${spring.data.mongodb.host}_testspring.data1.mongodb.port=${spring.data.mongodb.port}_testspring.data1.mongodb.database=${random.value}_test注意最后一个配置,这使用random 生产随机值的方式, 在测试中可以用来造数据。
使用@value 进行属性的注入有的时候可能比较笨重, spring 提供一种强类型的bean 来替代这种方式
@Configuration@EnableConfigurationProperties(UserProperties.class)public class MyConfiguration{
}
@Component@ConfigurationProperties(prefix = "spring.data.mongodb")public class UserProperties {
private String host; private int prot;}spring.data.mongodb.host=192.168.1.1spring.data.mongodb.port=1234
YAML文档也可以比较好的被支持, YamlPropertiesFactoryBean会将yaml文件当初properties来解析的。
spring: data.mongodb:
host:192.168.1.1 port:27017但是YAML文件不能通过@PropertySource注解加载. 所以,在这种情况下,如果需要使用@PropertySource注解的方式加载值,那就要使用properties文件。
使用Value可以为类的属性注入初始值,包括注入普通字符、注入操作系统属性、注入表达式结果、注入其他Bean的属性、注入文件内容、注入网址、注入属性文件
@Bean用于方法中,@Bean(initMethod="init", destroyMethod="destroy")
一般和@Bean一起使用,在不同的profile下使用不同的配置类,profile可以通过context.getEnvironment.setActiveProfiles("prod");来设置,通常的profile有dev、local、prod、online。
在特定条件下创建特定的Bean。使用时实现Condition接口,创建条件类
public class WindowsCondition implements Condition { //实现matches方法 } public class LinuxCondition implements Condition { //实现matches方法 }使用时在不同的条件下配置不同的方法:
@Configuration public class ConditionConfig { @Bean @Conditional(WindowsCondition.class) public OsConfig windowsConfig(){ } @Bean @Conditional(WindowsCondition.class) public OsConfig linuxConfig(){ } }一般和POJO对象一起使用,例如:
@Component @ConfigurationProperties(prefix="author", locations={"classpath:config/author.properties"}) class Author { private String name; private int age; //getter and setter }application-prod.properties application.properties 在application.properties中配置spring.profiles.active=prod
用于描述Spring容器如何创建Bean实例的。
Singleton, 默认是单例PrototypeRequestSessionGlobalSessionSpring单元测试框架不依赖于任何其他的单元测试框架,可以是Junit也可以支持TestNG。
@RunWith(SpringJunitClassRunner.class) @ContextConfiguration(Application.class) @ActiveProfiles("prod") public DemoClassTest { //@Autowired }