1

我是 Spring 的新手,想知道是否可以通过注释必须注入其变量的类来加载应用程序(而不是使用 ApplicationContext ctx = new ApplicationContext("myAppContext"))。

让我举个例子:

我有这个类TestSpring.java,其中一个字符串应该是自动装配的

package mytest;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;

//Is it possible to put an annotation here that loads the application context "TestSpringContext.xm"??
public class TestSpring {

    @Autowired
    @Qualifier("myStringBean")
    private String myString;


    /**
     * Should show the value of the injected string
     */
    public void showString() {
        System.out.println(myString);
    }

}

spring bean 配置文件 ( TestSpringContext.xml ) 看起来像这样

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util"
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd  http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"
        >

 <context:annotation-config />

 <bean id="myStringBean" class="java.lang.String">
 <constructor-arg value="I am  an injected String."/>
</bean>
</beans>

现在我想myString使用以下代码显示自动装配字符串的值(在 TestSpring.java 中声明)RunTestSpring.java

package mytest;

public class RunTestSpring {

    public static void main(String[] args) {
        TestSpring testInstance = new TestSpring();
        testInstance.showString();

    }

}

现在我的问题是,是否可以在加载应用程序上下文时成功运行“RunTestSpring.java”,只需添加注释RunTestSpring.java。如果是,使用哪个注释?

4

2 回答 2

2

我建议编写一个使用 spring 注入进行环境初始化的 JUnit 类。像这样的东西-

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations="/spring/spring-wireup.xml", inheritLocations = true)
public class MyTestCase extends TestCase {
    // your test methods ...
}
于 2012-07-20T17:36:38.917 回答
2

@Configurable可能是您正在寻找的,它将确保未由 Spring 实例化的对象可以由 Spring 自动装配它们的依赖关系。然而,问题是它需要 AspectJ 编译时间/加载时间编织才能工作(不是 Spring AOP)。

这是一个参考: http ://static.springsource.org/spring/docs/3.1.x/spring-framework-reference/html/aop.html#aop-atconfigurable

于 2012-07-20T18:28:41.287 回答