只要配置了上下文组件扫描,只使用@Component
注释创建spring bean是否正确?
将Spring 3.0.5与Java 6一起使用。
我的测试用例是:
@ContextConfiguration(locations={"classpath:spring-bean.xml"})
public class ServerServiceUnitTest extends AbstractJUnit4SpringContextTests {
@Autowired
private ServerService serverService;
@Test
public void test_server_service() throws Exception {
serverService.doSomething();
//additional test code here
}
}
spring-bean.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-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:annotation-config/>
</beans>
我的班级我想成为一名豆子:
@Component("ServerService")
public class ServerServiceImpl implements ServerService {
private static final String SERVER_NAME = "test.nowhere.com";
//method definitions.....'
}
这不足以让spring实例化ServerService
bean并进行自动装配吗?
我得到的错误是:
由以下原因引起:org.springframework.beans.factory.NoSuchBeanDefinitionException:没有为依赖项找到类型为[serversystem.ServerService]的匹配bean:期望至少有一个bean符合此依赖项的autowire候选资格。依赖注释:{@ org.springframework.beans.factory.annotation.Autowired(required = true)}
我确定我错过了一些简单的事情。
答案 0 :(得分:6)
您尚未在spring-beans.xml
<context:component-scan>
元素中定义:
<context:component-scan base-package="the.package.with.your.service"/>
包含
<context:annotation-config/>
仅允许您使用@Required
,@Autowired
和@Inject
注释进行配置。通过指定<context:component-scan>
,您将告诉Spring在哪里查找@Component
注释。
答案 1 :(得分:0)
如果您使用带注释的控制器和其他功能 你应该包括
<mvc:annotation-driven/>
你应该使用
<context:component-scan base-package="spring3.example.controllers"/>
指定存储控制器类的包。