로깅관련 클래스를 추가하고 톰캣을 돌렸더니 다음과 같은 에러가 나왔다.
At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time. |
왜인지는 모르겠어 구글 번역을 돌려보니 TLD파일을 스캔할 수 없다는 내용이다.
rt.jar파일 스캔을 제외하는 방법으로 해결했다.
참고 : https://javacan.tistory.com/entry/decrease-tomcat-startup-time-by-skip-jar-scan
** rt.jar파일에 대한 오류가 나오면 이 부분을 다시 봐야한다.
오류처리 끝.
---------------------------------------------------------------------------------------------------------------------------------
19.06.16 추가
rt.jar파일 스캔 제외를 하지않으니 WAS돌릴때 xbean.jar 파일을 찾을 수 없다며 에러가 났다.
rt.jar 스캔 제외한 이후에는 스프링 xmlbean으로 자동으로 찾아갔다.
자세히는 모르겠지만, 버전이 올라가면 rt.jar파일을 안쓰는 방향으로 바뀌는 것 같다.
반응형
'쓸만한 JSP 홈페이지 만들기' 카테고리의 다른 글
공통클래스 - CommonDAO / CommonDAOImpl (0) | 2019.06.20 |
---|---|
Spring 설정xml - common-context.xml (0) | 2019.05.05 |
web.xml설정 - ExcludeServlet (0) | 2019.05.01 |
공통클래스 - MethodLogAop (0) | 2019.04.30 |
Spring 설정xml - aop-context.xml (0) | 2019.04.25 |