gpt4 book ai didi

springboot如何使用@Value获取配置文件的值

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章springboot如何使用@Value获取配置文件的值由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

使用@Value获取配置文件的值

1、创建配置文件(application.properties)

?
1
2
3
4
5
spring.activemq.broker-url=tcp: //localhost:61616
spring.activemq.user=admin
spring.activemq.password=admin
spring.activemq.in-memory= true
spring.activemq.pool.enabled= false

2、创建测试类(MyController.java)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.jeff.controller;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MyController {
     @Value ( "${spring.activemq.user}" )
     private String user;
     @RequestMapping ( "myTest" )
     public String myTest() {
         System.out.println( "user的值:" + user);
         return "success" ;
     }
}

3、打开浏览器访问 http://localhost:8080/myTest,控制台输出结果

springboot如何使用@Value获取配置文件的值

springboot如何使用@Value获取配置文件的值

SpringBoot 使用@Value()注解获取到配置文件中的值为null

1、描述

?
1
2
3
4
5
6
7
8
9
@Slf4j
@Component
public class FileUtils {
     @Value ( "${document.path.output}" )
     private String outPath;
}
document:
   path:
     output: E:/workspace/doc_convert/tmp

2、解决方式

新创建了一个SpringBoot项目,在使用@Value获取配置文件中的值时,一直为null.

通过排查发现,虽然值为null,说明配置的参地址是正确的,只是在Spring进行依赖注入的时候没有把这个值注入到变量中来.

通过检查发现,是由于使用此类(注解所在的类)时候是直接new的,并没有将此类的创建交由Spring容器进行管理.

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我.

原文链接:https://blog.csdn.net/weixin_45739720/article/details/103702223 。

最后此篇关于springboot如何使用@Value获取配置文件的值的文章就讲到这里了,如果你想了解更多关于springboot如何使用@Value获取配置文件的值的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com