SpringBoot获取配置:@Value、@ConfigurationProperties方式

这篇具有很好参考价值的文章主要介绍了SpringBoot获取配置:@Value、@ConfigurationProperties方式。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

配置文件yml

# phantomjs的位置地址
phantomjs:
  binPath:
    windows: binPath-win
    linux: binPath-linux
  jsPath:
    windows: jsPath-win
    linux: jsPath-linux
  imagePath:
    windows: imagePath-win
    linux: imagePath-linux

phantomjs2:
  binPath2: I‘m binPath2
  binPath3: I‘m binPath3

一、@Value

1、常规方式

  • 注入(需要把类交给spring)
@Data
@Component
public class PhantomPath {

    @Value("${phantomjs.binPath.windows}")
    private String binPathWin;
    @Value("${phantomjs.jsPath.windows}")
    private String jsPathWin;
    @Value("${phantomjs.binPath.linux}")
    private String binPathLinux;
    @Value("${phantomjs.jsPath.linux}")
    private String jsPathLinux;
    @Value("${phantomjs.imagePath.windows}")
    private String imagePathWin;
    @Value("${phantomjs.imagePath.linux}")
    private String imagePathLinux;

    //下面可以直接在方法中使用

}
  • 使用(可以直接在注入的类中使用)
    @Resource
    private PhantomPath phantomPath;

    @Test
    public void test03()throws Exception{
        System.out.println(phantomPath.getBinPathWin());
        System.out.println(phantomPath.getJsPathWin());
        System.out.println(phantomPath.getBinPathLinux());
        System.out.println(phantomPath.getJsPathLinux());
        System.out.println(phantomPath.getImagePathWin());
        System.out.println(phantomPath.getImagePathLinux());
    }
  • 测试

SpringBoot获取配置:@Value、@ConfigurationProperties方式

2、注入到静态属性上

  • 解释
    不能这样直接注入到静态属性上
    SpringBoot获取配置:@Value、@ConfigurationProperties方式
    这样是获取不到值的
    SpringBoot获取配置:@Value、@ConfigurationProperties方式

  • 注入(需要注入到非静态set方法上,再复制给静态属性)

package com.cc.urlgethtml.utils;

import lombok.Data;
import lombok.Getter;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

/**
 * <p>根据不同系统获取不同路径</p>
 *
 * @author CC
 * @since 2023/11/3
 */
@Component
public class PhantomPathStatic {

    public static String binPathWin;
    public static String jsPathWin;

    //必须是非静态的set方法
    @Value("${phantomjs.binPath.windows}")
    public void setBinPathWin(String binPathWin) {
        PhantomPathStatic.binPathWin = binPathWin;
    }
    @Value("${phantomjs.jsPath.windows}")
    public void setJsPathWin( String jsPathWin) {
        PhantomPathStatic.jsPathWin = jsPathWin;
    }

    public static String getBinPathWin() {
        return binPathWin;
    }

    public static String getJsPathWin() {
        return jsPathWin;
    }
}
  • 使用(有两种方式:静态属性方式、get方式)
    @Resource
    private PhantomPathStatic phantomPathStatic;

    @Test
    public void test04()throws Exception{
        System.out.println(phantomPathStatic.getBinPathWin());
        System.out.println(PhantomPathStatic.binPathWin);
        System.out.println(phantomPathStatic.getJsPathWin());
        System.out.println(PhantomPathStatic.jsPathWin);
    }
  • 测试

SpringBoot获取配置:@Value、@ConfigurationProperties方式

一、@ConfigurationProperties

1、常规方式

  • 注入
@Data
@Component
@ConfigurationProperties(prefix = "phantomjs2")
public class PhantomConPro {

    private String binPath2;

    private String binPath3;

}
  • 使用、测试

SpringBoot获取配置:@Value、@ConfigurationProperties方式

2、获取map方式

  • 注入
package com.cc.urlgethtml.utils;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import java.util.Map;

/**
 * <p></p>
 *
 * @author CC
 * @since 2023/11/7
 */
@Data
@Component
@ConfigurationProperties(prefix = "phantomjs")
public class PhantomConProMap {

    private Map<String, String> binPath;

    private Map<String, String> jsPath;

    private Map<String, String> imagePath;

}
  • 使用、测试

SpringBoot获取配置:@Value、@ConfigurationProperties方式

3、注入到静态属性上

  • 注入
package com.cc.urlgethtml.utils;

import lombok.Data;
import lombok.Getter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import java.util.Map;

/**
 * <p></p>
 *
 * @author CC
 * @since 2023/11/7
 */
@Component
@ConfigurationProperties(prefix = "phantomjs")
public class PhantomConProMapStatic {

    @Getter
    public static Map<String, String> binPath;
    @Getter
    public static Map<String, String> jsPath;
    @Getter
    public static Map<String, String> imagePath;

    //必须是非静态的set方法
    public void setBinPath(Map<String, String> binPath) {
        PhantomConProMapStatic.binPath = binPath;
    }
    public void setJsPath(Map<String, String> jsPath) {
        PhantomConProMapStatic.jsPath = jsPath;
    }
    public void setImagePath(Map<String, String> imagePath) {
        PhantomConProMapStatic.imagePath = imagePath;
    }
}
  • 使用、测试(三种使用方式)

SpringBoot获取配置:@Value、@ConfigurationProperties方式

三、总结

参考:https://zhuanlan.zhihu.com/p/639448969文章来源地址https://www.toymoban.com/news/detail-745950.html

到了这里,关于SpringBoot获取配置:@Value、@ConfigurationProperties方式的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包