카테고리 없음

전자정부프레임워크 - 새로운 패키지 등록하기

응애개발자 애기 2022. 3. 11. 14:47
728x90
반응형

dispatcher-servlet.xml

    <context:component-scan base-package="egovframework">
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/>
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Repository"/>
    </context:component-scan>

 

만약 내가 main이라는 베이스패키지를 추가하고싶다고 한다면

    <context:component-scan base-package="egovframework,main">
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/>
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Repository"/>
    </context:component-scan>

이런식으로 추가하세요

 

 

728x90