복붙노트

[SPRING] ClassReader에서 ArrayIndexOutOfBoundsException으로 인해 ApplicationContext를로드하지 못했습니다.

SPRING

ClassReader에서 ArrayIndexOutOfBoundsException으로 인해 ApplicationContext를로드하지 못했습니다.

junit 테스트 클래스를 실행할 때 아래 예외가 발생합니까? 어떻게 해결할 수 있습니까?

Failed to load ApplicationContext
java.lang.IllegalStateException: Failed to load ApplicationContext
    at org.springframework.test.context.TestContext.getApplicationContext(TestContext.java:157)
    at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:109)
    at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75)
    at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:321)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:211)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:288)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:290)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:231)
    at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
    at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:174)
Caused by: java.lang.ArrayIndexOutOfBoundsException: 8
    at org.springframework.asm.ClassReader.readUnsignedShort(Unknown Source)
    at org.springframework.asm.ClassReader.<init>(Unknown Source)
    at org.springframework.asm.ClassReader.<init>(Unknown Source)
    at org.springframework.asm.ClassReader.<init>(Unknown Source)
    at org.springframework.core.type.classreading.SimpleMetadataReader.<init>(SimpleMetadataReader.java:48)
    at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:80)
    at org.springframework.core.type.classreading.CachingMetadataReaderFactory.getMetadataReader(CachingMetadataReaderFactory.java:101)
    at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:76)
    at org.springframework.context.annotation.ConfigurationClassUtils.checkConfigurationClassCandidate(ConfigurationClassUtils.java:70)
    at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:233)
    at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:203)
    at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:617)
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:446)
    at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:103)
    at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext(AbstractGenericContextLoader.java:1)
    at org.springframework.test.context.support.DelegatingSmartContextLoader.loadContext(DelegatingSmartContextLoader.java:228)
    at org.springframework.test.context.TestContext.loadApplicationContext(TestContext.java:124)

내 테스트 수업은

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations="classpath:dispatcher-servlet.xml")

public class CandidateDAOImplTest{
@Autowired
    public CandidateDAO candidateService;


    @Test
    public void testGetCandidate() {...}
}

dispatcher-servlet.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"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
        xmlns:tx="http://www.springframework.org/schema/tx"
    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
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
                http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"
>

    <context:component-scan base-package="com.global" />

    <bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>

    <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
        <property name="basenames">
            <list>
                <value>mymessages</value>
            </list>
        </property>
    </bean>

    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location">
            <value>database.properties</value>
    </property>
    </bean>


    <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>


    <!-- Configures the @Controller programming model -->
    <mvc:annotation-driven />

    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource">
            <ref bean="dataSource" />
        </property>
    </bean>


    <bean id="candidateService" class="com.global.dao.impl.CandidateDAOImpl">
        <property name="jdbcTemplate" ref="jdbcTemplate" />
    </bean>    

    <!-- Define a Transaction Manager -->
    <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource">
            <ref bean="dataSource" />
        </property>
    </bean>

    <!-- Turn on support for transaction annotations -->
    <tx:annotation-driven transaction-manager="txManager"/>

</beans>

web / WEB-INF / dispatcher-servlet.xml에 있습니다. netbeans ide 7.3 및 glassfish 서버 3.0 사용하고 있습니다.

해결법

  1. ==============================

    1.대부분 봄 콩 중 하나에 람다식이 있습니다. 분명히 봄 3 빈은 코드 어딘가에 람다가 있으면 초기화 할 수 없습니다. 스프링 4로 마이그레이션 할 수없는 경우 익명 클래스를 사용하여 람다 식을 다시 작성하십시오.

    대부분 봄 콩 중 하나에 람다식이 있습니다. 분명히 봄 3 빈은 코드 어딘가에 람다가 있으면 초기화 할 수 없습니다. 스프링 4로 마이그레이션 할 수없는 경우 익명 클래스를 사용하여 람다 식을 다시 작성하십시오.

    Function<A,B> lambda = new Function() {
        public B apply(A s) { ... }
    }
    

    또는 봄 빈에서 람다 코드를 이동하십시오. 나는 똑같은 문제를 안고 있었고 나에게 도움이되었다. 나는 여전히 봄 3을 jre / jdk 8과 함께 사용할 수 있었다.

    이 실패를 피하십시오 :

     Caused by: java.lang.ArrayIndexOutOfBoundsException: 10348
        at org.springframework.asm.ClassReader.<init>(Unknown Source)
    
  2. ==============================

    2.사용중인 JDK를 명시하지 않았습니다. 1.8을 사용하고 있다면 Spring을 4로 업그레이드해야 할 수도 있습니다.

    사용중인 JDK를 명시하지 않았습니다. 1.8을 사용하고 있다면 Spring을 4로 업그레이드해야 할 수도 있습니다.

    이 질문에 대한 답변보기 : Java 1.8 ASM ClassReader가 클래스 파일을 구문 분석하지 못했습니다. 아마도 아직 지원되지 않는 새로운 Java 클래스 파일 버전 일 것입니다.

  3. ==============================

    3.문제는 XML 파일의 위치입니다. WEB-INF는 classpath의 일부가 아닙니다. "src"폴더 아래에서 복사 해보십시오.

    문제는 XML 파일의 위치입니다. WEB-INF는 classpath의 일부가 아닙니다. "src"폴더 아래에서 복사 해보십시오.

  4. ==============================

    4.src 폴더 아래에 파일을 넣으십시오. 그런 다음 WEB-INF / classes 폴더에 복사됩니다. 그런 다음 classpath : dispatcher-servlet.xml로 참조 할 수 있습니다. 파일이 classes 디렉토리 바로 아래에 있지 않으면 테스트에서 classpath : dispatcher-servlet.xml과 같은 위치를 사용할 수 없습니다

    src 폴더 아래에 파일을 넣으십시오. 그런 다음 WEB-INF / classes 폴더에 복사됩니다. 그런 다음 classpath : dispatcher-servlet.xml로 참조 할 수 있습니다. 파일이 classes 디렉토리 바로 아래에 있지 않으면 테스트에서 classpath : dispatcher-servlet.xml과 같은 위치를 사용할 수 없습니다

  5. ==============================

    5.클래스 패스에 잘못된 클래스 파일이있는 것 같습니다.

    클래스 패스에 잘못된 클래스 파일이있는 것 같습니다.

    블로그 (http://blog.163.com/mxl_880310/blog/static/1847222162012320102631220/) (중국어 번체)는 유사한 문제를 설명하며 저자는 크기가 0 인 클래스 파일이 있는지 확인하여 해결합니다.

  6. from https://stackoverflow.com/questions/17563149/failed-to-load-applicationcontext-caused-by-arrayindexoutofboundsexception-in-cl by cc-by-sa and MIT license