반응형
dispatcher-servlet.xml
ajax가 안될때
<mvc:annotation-driven/> 한 줄 추가
<context:component-scan base-package="servlet">
<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>
<bean class="org.springframework.web.servlet.view.UrlBasedViewResolver" p:order="1"
p:viewClass="org.springframework.web.servlet.view.JstlView"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp"/>
<mvc:annotation-driven/>
</beans>
반응형
'프로그래밍' 카테고리의 다른 글
[github] 깃허브 꾸미기 (배지, 스탯 위젯, 헤더) (0) | 2024.04.21 |
---|---|
[postgreSQL] DB에 txt 파일 업로드하기 (0) | 2024.04.01 |
[JAVA] 전자정부프레임워크 에러 'boolean com.ibm.icu.text.UTF16.isSurrogate(char)' (0) | 2024.03.18 |
[Ubuntu] 우분투 자바 설치 시 에러 (Unable to locate package) (0) | 2024.03.16 |
[git] 이클립스와 git 연결하기, git에서 가져오기 (1) | 2024.03.16 |
댓글