摘要:
前几天在项目读取resources目录下的文件时碰到一个小坑,明明在本地是可以正常运行的,但是一发到测试环境就报错了,说找不到文件,报错信息是:class path resource [xxxx] cannot be resolved to absolute file path because it 阅读全文
posted @ 2023-07-04 15:27
江南大才子
阅读(763)
评论(0)
推荐(1)
摘要:
当我们需要在工具类中获取yml配置的时候,由于变量是staic导致获取不到yml配置因为spring加载静态方法比IOC早,所以不能直接使用@Value注解读取yml配置,读取结果是null。 @Component public class TestUtil { // 使用@Value注解读取yml 阅读全文
posted @ 2023-07-04 15:19
江南大才子
阅读(1110)
评论(0)
推荐(0)