可以访问ApplicationContext.xml中的java变量吗?

发布于 2024-10-29 05:32:03 字数 184 浏览 0 评论 0原文

我们正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无所的.畏惧 2024-11-05 05:32:03

如果您使用 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 id="myBean"
        class="mypackage.AnotherClass">
    <property name="theProperty">
      <value>#{T(mypackage.MyClass).THREAD_NUMBER}</value>
    </property>
  </bean>

如果它不是静态字段而是实例字段,您首先需要一个 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:

  <bean id="myBean"
        class="mypackage.AnotherClass">
    <property name="theProperty">
      <value>#{T(mypackage.MyClass).THREAD_NUMBER}</value>
    </property>
  </bean>

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.

吃素的狼 2024-11-05 05:32:03

如果你不想使用 EL 或使用旧版本的 Spring,

<bean id="myBean" class="org.springframework.beans.factory.config.FieldRetrievingFactoryBean">
        <property name="staticField" value="MyClass.MY_STATIC_FIELD"/> </bean>

If you dont want to use EL or using an older version of Spring,

<bean id="myBean" class="org.springframework.beans.factory.config.FieldRetrievingFactoryBean">
        <property name="staticField" value="MyClass.MY_STATIC_FIELD"/> </bean>
仅一夜美梦 2024-11-05 05:32:03

看一下 BeanPostProcessor。它可能可以做你想做的事。

Take a look at BeanPostProcessor. It could probably do what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文