我正在开发一个 Spring MVC 和 MongoDB 支持的应用程序。
我的 api 工作正常,但我想用 Fongo 创建一个集成测试,以便测试保存文件并在我的服务获取此文件后进行测试。
我已经尝试过了,但是当我添加@Autowired
到我的服务类中时,它返回了一个UnsatisfiedDependencyException
. 我的测试夹具类如下:
@ActiveProfiles({"test"})
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(
locations = {
"classpath*:config/servlet-config.xml",
"classpath*:config/SpringConfig.xml"})
@WebAppConfiguration
public class IntegrationTest {
@Autowired // returns UnsatisfiedDependencyException
private FileService fileService;
@Before
@Test
public void setUp() throws IOException {
Fongo fongo = new Fongo("dbTest");
DB db = fongo.getDB("myDb");
}
@Test
public void testInsertAndGetFile() throws IOException{
//create a file document in order to save
File file = new File();
file.setId("1");
file.setFileName("test1");
file.setVersionId("1");
//save the file
String id = fileService.storeFile(file);
//get the file
File fileDocument= fileService.getFileById("1");
//check if id is the file id which is expected
assertEquals(fileDocument.getId(), "1");
}
}
我收到此日志消息:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'com.ots.openonefilesystem.integration.IntegrationTest': Unsatisfied dependency expressed through field 'fileService'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean found for dependency [com.myproject.service.FileService]: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean found for dependency [com.myproject.service.FileService]: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
我正在使用xml配置。
我该如何解决我的测试错误?在我的服务类中,FileService
我已经提出了@Service
,但似乎 Spring 预计至少有 1 个有资格作为自动装配候选者的 bean。
此外,如果我删除@Autowired,则NullpointerException
在保存获取文件时日志会返回,正如预期的那样。
PS:我用的是springFramework 4.3.3.RELEASE,spring-data-mongodb 1.9.5.RELEASE
先感谢您!