可以访问ApplicationContext.xml中的java变量吗?
我们正在使用 Spring 框架。是否可以从 ApplicationContext.xml 中的 java 类访问现有变量?
例如,我们有一个线程号初始化为 5 的类。有没有办法在应用程序上下文中读取“5”,以便我们可以使用它来注入其他 Java 类?
如果是,怎么办?
亲切的问候,
瓦勒
We're using the Springframework. Is it possible to access an existing variable from a java class in ApplicationContext.xml?
For instance, we have a class with a threadnumber which is initialized on 5. Is there a way to read that '5' in the applicationcontext, so we can use it to inject other Java classes?
If yes, how?
Kind regards,
Walle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用 Spring 3,您应该能够使用 Spring EL 来完成此操作。查看 http://static .springsource.org/spring/docs/3.1.0.M1/spring-framework-reference/html/expressions.html
这是一个示例,假设您要使用类 mypackage.MyClass 的公共静态字段 THREAD_NUMBER:
如果它不是静态字段而是实例字段,您首先需要一个 bean,然后从 Spring EL 表达式调用适当的 getter。
If you are using Spring 3, you should be able to do it using Spring EL. Check out http://static.springsource.org/spring/docs/3.1.0.M1/spring-framework-reference/html/expressions.html
Here is an example assuming you want to use a public static field THREAD_NUMBER of class mypackage.MyClass:
If it's not a static field but an instance field you would need a bean first and then call an apropriate getter from Spring EL expression.
如果你不想使用 EL 或使用旧版本的 Spring,
If you dont want to use EL or using an older version of Spring,
看一下 BeanPostProcessor。它可能可以做你想做的事。
Take a look at
BeanPostProcessor
. It could probably do what you want.