반응형
번호 | 오류 내용 | 해결법 | 참고주소 | 해결(O/X) |
1 | org.springframework.test.context.TestContextManager - Caught exception while allowing TestExecutionListener | "servlet-api의 버전이 안맞기 때문" 라고 링크에 나옴, 그리고 추가적으로 개인적인 예상이지만 pom.xml의 servlet의 dependency에서 <artifactId>servlet-api</artifactId>가 <artifactId>javax.servlet-api</artifactId> 으로 잘 바뀌었는지 확인 바람, 종종 "javax"를 빼는 실수가 있음 | https://blog.hanumoka.net/2018/04/29/spring-20180429-spring-mvc-junit-test/ | O |
2 | 인터넷이 끊긴 상황에서 실수로 Maven update - maven 라이브러리 자체가 안 생기거나 이미 있던 maven이 실제 코드나 파일에 적용이 안됩니다, 스프링 자체가 먹통 | 다시 인터넷이 되는 곳으로 가서 .m2>repository 삭제 + STS Eclipse 에서 Maven>Clean | - | O |
3 | WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/list] in DispatcherServlet with name '' | selvlet-context.xml 경로 확인 <context:component-scan base-package="org.zerock.controller" /> |
- | O |
4 | text area 공백 에러 !! | - | https://okky.kr/article/292680 | O |
5 | javax.el.PropertyNotFoundException: Property [type] not found on type [org.zerock.domain.Criteria]] | -- | https://teqoo.tistory.com/ | O |
6 | [Failed to load resource: net::ERR_INCOMPLETE_CHUNKED_ENCODING] | 태그 안이 비었는지 확인 | - | O |
7 | Error configuring application listener of class [org.springframework.web.context.ContextLoaderListener] | - | http://myblog.opendocs.co.kr/archives/1657 | O |
8 | cookie config 오류 | web.xml의 servlet-api 버전을 3.1.0 이상으로 고쳐줘야함 | - | O |
9 | org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.NullPointerException | pom.xml 수정해야함 | - | O |
10 | net.sf.log4jdbc.sql.jdbcapi.ConnectionSpy.getNetworkTimeout()I) | pom.xml 수정해야함 | - | O |
11 | Cannot change version of project facet Dynamic Web Module to 2.5. | - | https://stackoverflow.com/questions/25551213/cannot-change-version-of-project-facet-dynamic-web-module-to-2-5 | O |
12 | 에러는 아니고 log4j 노란줄 뜨는거 Q:\Document.Project\workspace\document-project\src\main\java\log4j.dtd (지정된 파일을 찾을 수 없습니다)" that is specified as |
- | https://stackoverflow.com/questions/5000884/eclipse-referencing-log4j-dtd-in-log4j-xml | O |
13 | Classpath entry 어쩌구 하는 워닝 | - | https://pcandme.tistory.com/50 | O |
14 | nested PropertyAccessExceptions (1) are | pom.xml 수정해야함 | - | O |
15 | 415 Unsupported Media Type (Restlet Client 테스트 결과) (코드로 배우는 스프링 p.395) | 데이터를 json 형식으로 바꾸는 라이브러리가 설정파일(pom.xml)에서 빠져서 생긴 문제. <jackson> library 를 추가하자(코드로 배우는 스프링 p.357 참고) |
- | - |
16 | org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI | - | https://stufeel.tistory.com/8 | O |
17 | 어노테이션 log4j 빨간줄 뜰 때 | pom.xml에서 log4j관련 설정 <scope>runtime</scope> 지워줘야함 | - | O |
18 | .xml 파일에서 갑자기 발생 Start state definition is missing. Add a 'start-state' element |
xml 파일 생성시 spring web flow definition file 로 생성시 에러발생 spring bean configuration file 로 생성해야함 또는 프로젝트 우클릭 -> 프로포티 -> 스프링 -> web flow support 들어가서 안에뭐가 있으면 remove |
- | O |
19 | log4j.xml에서 The file cannot be validated as the XML definition |
오류난 줄에서 "log4j.dtd" => "http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/xml/doc-files/log4j.dtd" 로 수정 | https://www.journaldev.com/2244/eclipse-log4j-xml-log4j-dtd-cannot-validated-xml-definition | O |
20 | [org.springframework.web.context.ContextLoaderListener]의 애플리케이션 리스너를 설정하는 중 오류 발생 | maven추가 | http://myblog.opendocs.co.kr/archives/1657 | O |
21 | Unable to find Log4j2 as default logging library. | 프로젝트안에 src/main/resources 밑에 log4jdbc.log4j2.properties 파일 없어서 생기는 오류 |
https://m.blog.naver.com/PostView.nhn?blogId=allkanet72&logNo=220926784590&proxyReferer=https%3A%2F%2Fwww.google.com%2F | O |
22 | 심각: Servlet.service() for servlet [appServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request; nested exception is java.lang.IllegalStateException: Unable to process parts as no multi-part configuration has been provided] with root cause java.lang.IllegalStateException: Unable to process parts as no multi-part configuration has been provided |
방법1: servlet-context.xml 파일의 일부를 참고주소에 나와있는 것처럼 servlet-context.xml의 bena id=multipartResolver 이 부분을 변경하고 maven repository 사이트에서 commons-fileupload.jar, commons-io.jar를 porm.xml 에 추가 방법2: 두번째 참고주소 대로 톰켓에 context.xml 파일 수정 |
https://stackoverflow.com/questions/15008049/org-springframework-web-multipart-multipartexception-the-current-request-is-not or https://powerku.tistory.com/12 |
o |
반응형
'IT > Spring' 카테고리의 다른 글
[IDE] 툴 부터 바꿔보자 ! (0) | 2019.08.28 |
---|---|
[STS] 스프링 인코딩 설정 (0) | 2019.08.03 |
[Spring Framework] 매핑 순서 (0) | 2019.07.24 |