将业务简化成了如下代码,发现在@Autowired时一直为null,有点搞不明白了
Spring-config.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"
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">
<context:component-scan base-package="com"/>
</beans>
HelloWord.java
@Controller
public class HelloWorld {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
测试类
public class Demo {
@Autowired
HelloWorld bean;
ApplicationContext context;
@Before
public void init() {
context = new ClassPathXmlApplicationContext("classpath:spring-config.xml");
}
@Test
public void testDemo() {
Object boo = context.getBean("helloWorld"); //这里是能够得到bean的
System.out.println(boo);
System.out.println(bean.getName()); //这里的bean一直为null,费解?
}
}
测试类有被标记需要被托管吗?
Spring 需要先知道哪些类需要被它管理,才会去扫描类上的注入注解进行处理。
不过我没试过测试类也放到扫描包内,不确定能不能扫出来。