我已经设置了spring-test-dbunit,但我得到了以下异常:
testSometing(com.my.package.dbunit.DbUnit)已用时间:13.013 s<<< 错误! java.lang.NoSuchMethodError: org.springframework.core.annotation.AnnotationUtils.findAnnotation(Ljava /郎/反映/ AnnotatedElement中; Ljava /郎/类;)Ljava /郎/注解/注释;
测试类如下所示:
package com.my.package.dbunit;
import com.github.springtestdbunit.DbUnitTestExecutionListener;
import com.github.springtestdbunit.annotation.DatabaseSetup;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.TestExecutionListeners;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.support.DependencyInjectionTestExecutionListener;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/test-application.xml")
@TestExecutionListeners({DependencyInjectionTestExecutionListener.class, DbUnitTestExecutionListener.class, DbUnitTestExecutionListener.class})
public class DbUnit {
@Autowired
public MyDAO myDAO;
@Test
@DatabaseSetup("target/partial.xml")
public void testSometing() throws Exception {
int rootId = 123;
MyClass root = myDAO.getById(rootId);
}
}
test-application.xml如下所示:
...
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${jdbc.driverClassName}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
</bean>
...
pom.xml看起来像这样
...
<dependency>
<groupId>org.dbunit</groupId>
<artifactId>dbunit</artifactId>
<version>2.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.springtestdbunit</groupId>
<artifactId>spring-test-dbunit</artifactId>
<version>1.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
...
似乎存在错误,因为无法解析@Test
注释。我不知道为什么
答案 0 :(得分:2)
您的spring-test-dbunit
版本很可能与您的spring版本不兼容。版本1.3.0中的findAnnotation
(似乎是最新的版本)取决于Spring 4.2.5。您可能正在项目中使用更新的Spring版本,而AnnotationUtils
中没有spring-test-dbunit
方法。
你现在基本上可以做两件事:
MySQL