티스토리 뷰

반응형

 

 

이 문제 때문에 2일을 날려먹었는데. 

이상할정도로 base-package 에러가나는거다. 

근데 다른 사람들 설정이랑 똑같은데 에러가 난다. 

어떤 분의 xml 설정을 갖다 붙였더니 드디어 에러가 수정됐다. 

beans 설정인 줄 알고 설마 띄어쓰기가 이걸? 설마 이게 이걸? 하면서 오타를 엄청 찾았는데 

오타도 없고 동일하다^^...

대환장 각이어서 몇번을 프로젝트 재 생성을 하고 설정을 했는지..

근데 이유는.. 

 

 

주석처리 되어있는 저 부분.. !!!

저 부분!!!!

저 한줄 없어서 package를 못찾았던거다.. 

autowired 문제 인것 같기도 하고. 

한 줄 추가했다고 되다니... ㅠㅠ

<?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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <mvc:annotation-driven/>
    <!--suppress SpringXmlModelInspection -->
    <context:component-scan base-package="kr.test"/> <!-- 알아서 수정하세요 -->

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/view/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
</beans>

 

반응형