标签:指定 ima 异常 org resource lazy framework AMM text
推荐两种方法 主要springboot项目注解更加方便使用
一.使用@PropertySource 方法
springboot项目resources层下创建XXX.properties 文件
properties文件内容
准备工作完成~
在springboot项目里使用@PropertySource注解来导入properties文件到使用类中
经过@Value标签获取到properties文件的数值参数
如此操作把properties文件参数数据引入使用类中
二.使用@ConfigurationProperties和@PropertySource 方法
使用ConfigurationProperties和PropertySource 把properties文件内容映射到对象实体类中,经实体类调用获取到properties参数
详见~
1.创建一个properties 文件
2.写入参数
plc.data1=${random.int(10)}
3.创建实体类对应properties文件内容
`
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;
import lombok.Data;
/**
`
4.使用类调用PlcTestEntity 来获取properties内容
springboot读取自定义properties配置文件方法
标签:指定 ima 异常 org resource lazy framework AMM text
原文地址:https://www.cnblogs.com/Runawayprogrammer/p/13138566.html