@Value("#{}")与@Value("${}")
开发过程中,有些配置信息是根据环境的不同而有不同的值。这个时候,我们需要获取配置文件中的值或者spring容器中的值,可以通过@value注解获取相关的值。
@Value(“#{}”)
通过@value获取springcontext容器中的值的信息。
@Value(“#{}”) 表示SpEl表达式通常用来获取bean的属性,或者调用bean的某个方法。当然还有可以表示常量
如果我们想通过@value获取spring容器中的值(包括bean和bean的属性值),我们可以通过@value("#{bean名称}")或者@value("#{bean名称.属性名}",该属性要有setter方法)
@Value(“#{}”) SpEL表达式(https://blog.csdn.net/ya_1249463314/article/details/68484422)
@Value(“#{}”) 表示SpEl表达式通常用来获取bean的属性,或者调用bean的某个方法。当然还有可以表示常量
@RestController
@RequestMapping("/login")
@Component
public class LoginController {
@Value("#{1}")
private int number; //获取数字 1
@Value("#{'Spring Expression Language'}") //获取字符串常量
private String str;
@Value("#{dataSource.url}") //获取bean的属性
private String jdbcUrl;
@Autowired
private DataSourceTransactionManager transactionManager;
@RequestMapping("login")
public String login(String name,String password) throws FileNotFoundException{
System.out.println(number);
System.out.println(str);
System.out.println(jdbcUrl);
return "login";
}
}
当bean通过@Value(#{“”}) 获取其他bean的属性,或者调用其他bean的方法时,只要该bean (Beab_A)能够访问到被调用的bean(Beab_B),即要么Beab_A 和Beab_B在同一个容器中,或者Beab_B所在容器是Beab_A所在容器的父容器。
(拿我上面贴出来的代码为例在springMvc项目中,dataSource这个bean一般是在springContext.xml文件中申明的,而loginController这个bean一般是在springMvc.xml文件中申明的,虽然这两个bean loginController和dataSource不在一个容器,但是loginController所在容器继承了dataSource所在的容器,所以在loginController这个bean中通过@Value(“#{dataSource.url}”)能够获取到dataSource的url属性)。
@Value(“${}”)
通过@value获取properties文件中的值的信息。
用 @Value(“${xxxx}”)注解从配置文件读取值的用法
如果我们想通过@value获取xx.properties配置文件中的某个key-value对的值,可以通过@value("${key}")获取其中的value值的信息
https://blog.csdn.net/zengdeqing2012/article/details/50736119
https://blog.csdn.net/jiangyu1013/article/details/56285984
1.用法
从配置properties文件中读取init.password 的值。
@Value("${init.password}")
private String initPwd;
2 . 在spring的配置文件中加载配置文件dbconfig.properties :
<!-- 加载配置文件 -->
<bean id="configProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="fileEncoding" value="UTF-8"/>
<property name="locations">
<list>
<value>classpath:dbconfig.properties</value>
</list>
</property>
</bean>
或这样加载
<context:property-placeholder location="classpath:dbconfig.properties" />
或这样加载
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
<property name="location">
<value>dbconfig.properties</value>
</property>
</bean>
3 . dbconfig.properties 文件:
#MD5
password.algorithmName=md5
password.hashIterations=2
#initpwd
init.password=admin
通过@Value(“${}”) 可以获取对应属性文件中定义的属性值。
假如我有一个sys.properties文件 里面规定了一组值: web.view.prefix =/WEB-INF/views/
在springMvc.xml文件中引入下面的代码可以在该容器内通过@Value(“web.view.prefix")
获取这个字符串。
<!-- 加载配置属性文件 -->
<context:property-placeholder
ignore-unresolvable="true" location="classpath:sys.properties" />
然后再controller文件中通过下面代码即可获取/WEB-INF/views/
这个字符串
@Value("${web.view.prefix}")
private String prefix;
需要指出的是,如果只在springMvc.xml引入下面代码,只能在springMvc.xml文件中扫描或者注册的bean中才能通过@Value("web.view.prefix")
获取这个字符串。其他未在springMvc.xml扫描和定义的bean必须在相应的xml文件中引入下面代码才能使用@Value(“${}”)
表达式
随机推荐
- robot_framewok自动化测试--(7)认识RIDE
认识 RIDE RIDE 作为 Robot Framework 的"脸面",虽然我们已经可以拿它来创建和运行测试了,但我们对它的认识并不全面,这一小节我们将了解这个工具的使用. 1 ...
- maven控制台出现乱码
maven默认环境为GBK,只需要改如下即可: 在IDEA中,打开File | Settings | Build, Execution, Deployment | Build Tools | Mave ...
- js 增删节点
<html><head><meta http-equiv="Content-Type" content="text/html; charse ...
- 使用PAM模块实现普通用户之间su免密切换
参考自:Allow user1 to "su - user2" without password https://unix.stackexchange.com/questions/ ...
- 从0到1使用Kubernetes系列(八):Kubernetes安全
本文是从 0 到 1 使用 Kubernetes 系列第八篇,上一篇从0到1使用Kubernetes系列(七):网络介绍了 K8S 网络相关的内容,本文将带你了解 K8S 的安全问题. Kuberne ...
- [noi712]练级
先考虑一个联通块,可以发现这个联通快内不会存在两个偶数的点证明:如果存在,那么这两个点的某一条路径上的边全部反过来,可以使答案+2,即答案为点数或点数-1同时,发现答案的奇数点数一定与边数同奇偶,那么 ...
- JVM的Xms Xmx PermSize MaxPermSize区别
Eclipse崩溃,错误提示:MyEclipse has detected that less than 5% of the 64MB of Perm Gen (Non-heap memory) sp ...
- Java设计模式之(九)——门面模式
1.什么是门面模式? Provide a unified interface to a set of interfaces in a subsystem.Facade defines a higher ...
- springboot启动流程1
public SpringApplication(ResourceLoader resourceLoader, Class<?>... primarySources) { this.res ...
- Python+selenium之弹窗