@autowire注入为null

新手上路,请多包涵

将业务简化成了如下代码,发现在@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,费解?
    }
}
阅读 3.9k
2 个回答

测试类有被标记需要被托管吗?

Spring 需要先知道哪些类需要被它管理,才会去扫描类上的注入注解进行处理。

不过我没试过测试类也放到扫描包内,不确定能不能扫出来。

类上加如下注解

@RunWith(SpringRunner.class)
@SpringBootTest //如果用springboot的话
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题