Spring: constructor injection of primitive values (properties) with annotation based configuration(Spring:具有基于注释的配置的原始值(属性)的构造函数注入)
问题描述
我正在尝试在 Spring 3 中使用基于注释的配置来配置一个类,它将原始值作为其构造函数参数:
I'm trying to configure a class with Annotation based configuration in Spring 3, which takes primitive values as its constructor arguments:
@Component
class MyBean {
MyBean(String arg1, String arg2) {
// ...
}
}
还有这样的应用程序上下文:
And an application context like this:
<beans [...]>
<context:component-scan base-package="com.example" />
<context:property-override location="/WEB-INF/example.properties" />
</beans>
我正在尝试找到某种方法来指定构造函数参数应取自属性文件.显然,这确实适用于采用常规 bean 的构造函数(例如 MyClass(Bean bean1, OtherBean bean2)),但只是属性?
I'm trying to find some way to specify that the constructor arguments should be taken from the properties file. Apparently this does work with constructors that take regular beans (e.g. MyClass(Bean bean1, OtherBean bean2)), but just properties?
我还尝试使用 Spring 3 的 @Value 注释和值的 EL 表达式来注释构造函数参数,例如 @Value("#{prop.Prop1}") arg1,但这似乎也不起作用.
I have also tried annotating the constructor arguments with Spring 3's @Value annotation and an EL expression for the value, like @Value("#{prop.Prop1}") arg1, but that doesn't seem to work either.
推荐答案
以下代码在 <context:property-placeholder .../> 下运行良好:
The following code works fine with <context:property-placeholder .../>:
@Component
public class MyBean {
@Autowired
public MyBean(@Value("${prop1}") String arg1, @Value("${prop2}") String arg2) {
// ...
}
}
但是<context:property-override .../>是很具体的东西,这里不适合.
But <context:property-override .../> is a very specific thing, it's not suitable here.
这篇关于Spring:具有基于注释的配置的原始值(属性)的构造函数注入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Spring:具有基于注释的配置的原始值(属性)的构造函数注入
基础教程推荐
- Struts2 URL 无法访问 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- RabbitMQ:消息保持“未确认"; 2022-01-01
