SpringBoot基础-属性配置使用

  • Post author:
  • Post category:其他




属性配置汇总

  1. Devtools全局配置
  2. 测试@TestPropertySource注解
  3. 测试properties属性
  4. 命令行参数
  5. SPIRNG_APPLICATION_JSON属性
  6. ServletConfig初始化参数
  7. ServletContext初始化参数
  8. JNDI属性
  9. JAVA系统属性
  10. 操作系统环境变量
  11. RndValuePropertySource随机值属性
  12. jar包外的application-{profile}.properties
  13. jar包内的application-{profile}.properties
  14. jar包外的application.properties
  15. jar包内的application.properties
  16. @PropertySoruce绑定配置
  17. 默认属性



使用方法

在下面属性配置使用的demo中,需要测试配置的属性是否正确,测试的方法我用的是下面的下面的demo样例

  • 获取属性工具类
@Component
public class SpringUtils implements ApplicationContextAware {

    private ApplicationContext applicationContext;

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        this.applicationContext = applicationContext;
    }

    /**
     * 获取属性
     *
     * @param key
     * @return
     */
    public String get(String key) {
        return applicationContext.getEnvironment().getProperty(key);
    }
}
  • 测试入口
@RestController
public class DemoController {

    @Autowired
    private SpringUtils springUtils;

    @RequestMapping(value = "/init/{key}")
    public String key(@PathVariable String key) {
        return springUtils.get(key);
    }
}

直接在浏览器访问设置的属性key,就可以打印属性值

在这里插入图片描述



默认属性-硬编码实现

@SpringBootApplication
public class SpringBootDemoApplication {
    public static void main(String[] args) throws InterruptedException {
        SpringApplication springApplication = new SpringApplication((SpringBootDemoApplication.class));
        Properties properties =new Properties();
        properties.setProperty("study1","value_study1");
        springApplication.setDefaultProperties(properties);
        springApplication.run(args);
    }
}



@PropertySoruce绑定配置

新建属性配置文件

src/main/resources/demo.properties

study2=demo_study2

在SpringApplicaiton启动类使用注解:PropertySource

@SpringBootApplication
@PropertySource({"demo.properties"})
public class SpringBootDemoApplication {
    public static void main(String[] args) throws InterruptedException {
        SpringApplication springApplication = new SpringApplication((SpringBootDemoApplication.class));
        springApplication.run(args);
    }
}



application.peroperties/yml文件配置

src/main/resources/application.yml

study3: demo_study3



随机值属性使用

配置文件中获取随机值

study4: demo_study${random.int[1,9]}

通过url访问会随机获取到1-9的值



配置文件引用系统属性

src/main/resources/application.yml

# 获取java_home配置信息
study5: ${JAVA_HOME}

在这里插入图片描述



配置文件引用java系统属性

src/main/resources/application.yml

# 获取java vm名称
study6: ${java.vm.name}

在这里插入图片描述



SPIRNG_APPLICATION_JSON属性配置

IDEA配置启动添加参数(注意引号要加转义符,不然启动报错)

–SPRING_APPLICATION_JSON={“study7”:“demo_study7”}

在这里插入图片描述



命令行参数属性配置

IDEA配置启动添加参数

–study8=demo_study8

在这里插入图片描述



测试环境properties属性

@RunWith(SpringRunner.class)
@SpringBootTest(properties = {"study9=demo_study9"})
public class ApplicationTest2 {
    @Autowired
    private SpringUtils springUtils;

    @Test
    public void demoTest() {
        System.out.println(springUtils.get("study9"));
    }
}



测试@TestPropertySource注解

@RunWith(SpringRunner.class)
@SpringBootTest
@TestPropertySource("classpath:demo.properties")
public class ApplicationTest3 {
    @Autowired
    private SpringUtils springUtils;

    @Test
    public void demoTest() {
        System.out.println(springUtils.get("study2"));
    }
}



版权声明:本文为cen50958原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。