我是 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
。如果是,使用哪个注释?