티스토리 뷰
살면서 다양하게 마주친 에러들(기록용)
IntelliJ + gradle + tomcat +spring mvc환경에서 dispatcher-servlet base-package 에러
猫猫 2020. 1. 21. 18:11반응형
이 문제 때문에 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>
반응형
'살면서 다양하게 마주친 에러들(기록용)' 카테고리의 다른 글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- PageNotFound - No mapping for GET
- JSON파싱
- poi 엑셀
- spring error #
- selectbox
- 인텔리제이
- Spring
- 정규식 숫자만
- 정규식 특수문자
- JSON날짜
- 엑셀다운로드
- 정규식 한글만
- 공백찾기
- Failed to load resource: the server responded with a status of 404 (Not Found)
- select제어
- js
- SpringXmlModelInspection
- jQuery
- ''찾기
- 정규식
- poi
- POI EXCEL
- no getter for property named
- mybatis
- 계좌번호정규식
- JSON
- IntelliJ #gradle #tomcat #spring #springmvc
- 이메일 정규식
- spring 엑셀
- Regex
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함