SpringBoot学习--使用配置文件对静态变量赋值,读取自定
2019-04-24 本文已影响0人
SevenCoder
-
创建maven 项目,pom.xml 中 应该有如下依赖:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
</parent><dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
2.定义配置文件: 以applicacation.yml 为例
6631556066405.jpg
3.定义对象: 一定要添加 setter 方法
注意使用注解: @Component(类上) @Value("${uploadFile.imageIp}")(set 方法)
6641556066961_.pic_hd.jpg
4.在静态方法中使用自定义变量:
6651556067157_.pic_hd.jpg