我的junit测试用例低于错误。任何人都可以建议我应该做些什么来清除这个错误。我正在使用带有弹簧4.3.2和junit 4.12的maven构建工具。
org.springframework.test.context.support.AbstractTestContextBootstrapper getDefaultTestExecutionListenerClassNames
INFO: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener]
07-Sep-2016 18:19:17 org.springframework.test.context.support.AbstractTestContextBootstrapper getTestExecutionListeners
INFO: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@691f36, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@18020cc, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@e94e92, org.springframework.test.context.support.DirtiesContextTestExecutionListener@12558d6, org.springframework.test.context.transaction.TransactionalTestExecutionListener@eb7859, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@12a54f9]
07-Sep-2016 18:19:18 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from class path resource [testContext.xml]
07-Sep-2016 18:19:18 org.springframework.context.support.AbstractApplicationContext prepareRefresh
INFO: Refreshing org.springframework.context.support.GenericApplicationContext@df8f5e: startup date [Wed Sep 07 18:19:18 IST 2016]; root of context hierarchy
07-Sep-2016 18:19:18 org.springframework.core.io.support.PropertiesLoaderSupport loadProperties
INFO: Loading properties file from class path resource [ldap_DEV.properties]
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
07-Sep-2016 18:19:18 org.springframework.test.context.TestContextManager prepareTestInstance
SEVERE: Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@e94e92] to prepare test instance [com.bt.dnp.ldap.util.LdapSyncTest@9505f]
java.lang.NoSuchMethodError: org.springframework.aop.scope.ScopedProxyUtils.isScopedTarget(Ljava/lang/String;)Z
at org.springframework.context.event.EventListenerMethodProcessor.afterSingletonsInstantiated(EventListenerMethodProcessor.java:79)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:796)
at
我的java类:我正在使用java 1.8。
import java.io.UnsupportedEncodingException;
import javax.naming.NamingException;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.ldap.core.LdapTemplate;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:testContext.xml")
public class LdapSyncTest {
private LdapSync ldapSync = null;
@Autowired
private LdapTemplate ldapTemplate;
@Before
public void init() {
ldapSync = new LdapSync();
ldapSync.setLdapTemplate(ldapTemplate);
}
@Test
public void testPasswordSync() throws UnsupportedEncodingException, NamingException {
ldapSync.doPwdUpdate("rajak1@bt.com", "uid", "BTCOM", "Tcs@12345");
}
}
答案 0 :(得分:1)
尝试将此添加到您的pom:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>4.3.2.RELEASE</version>
</dependency>
您的错误表明spring-context
正试图致电spring-aop
的{{1}}。
该方法存在于4.3.2中(自2.5起),这只能意味着spring-aop的运行时依赖性是错误的。
在添加上述依赖项之前,您可以进入控制台并键入ScopedProxyUtils.isScopedTarget(String beanName)
,您将找到
错误的版本来自哪里。
答案 1 :(得分:0)
这个问题的原因很明显: 1.不正确的Spring jar版本。低于4.0 要么 2.类路径中的多个jar版本。一些旧版本也存在,因此相互冲突。 3.你需要一个Clean build。可能一切都是正确的,但需要新的构建。