美文网首页
SpringBoot学习--使用配置文件对静态变量赋值,读取自定

SpringBoot学习--使用配置文件对静态变量赋值,读取自定

作者: SevenCoder | 来源:发表于2019-04-24 08:48 被阅读0次
  1. 创建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

相关文章

网友评论

      本文标题:SpringBoot学习--使用配置文件对静态变量赋值,读取自定

      本文链接:https://www.haomeiwen.com/subject/zgcpwqtx.html