- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
[이클립스] Server - publishing 없이 서버 구동하기 본문
Serve modules without publishing 를 체크하고 에러 날 때 해결책
Servers 에서 설정한 톰켓서버 더블클릭 하고...
Server modules without publishing 체크한 위에 보면...
Open launch configuration 이라고 있는데... 클릭해서 창을 띄운 후
Classpath 탭에 Bootstrap Entries 에서 Add External JARs... 로
톰캣 디렉토리 lib 폴더에 있는 servlet-api.jar 를 추가 하니까...
해결(?) 되네요...
[출처] https://okky.kr/article/171143
Classpath 탭에 Bootstrap Entries 에서 Add External JARs... 로
톰캣 디렉토리 lib 폴더에 있는 다음 파일들을 추가
1) servlet-api.jar
2) el-api.jar
3) jsp-api.jar
Eclipse에서 Tomcat 8 Server를 등록하고 Serve modules without publishing 옵션을 체크하고 Run 시키고 jstl core tag가 있는 페이지를 호출하면 다음과 같은 에러가 난다.
/WEB-INF/jsp/view/login.jsp (line: [1], column: [1]) The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the jar files deployed with this application
Eclipse의 Tomcat 8 Server Overview의 Open launch configuration에서 Classpath 항목에서 javax.servlet.jsp.jstl-1.2.2.jar 파일을 추가해 봤지만 계속 동일한 에러가 났다.
javax.servlet.jsp.jstl-1.2.2.jar 파일을 Web Application의 /WEB-INF/lib 폴더에 넣으니 제대로 동작했다.
아마도 Tomcat 8 이나 Eclipse WTP에서 버그가 있는 것일까?
< Migrating from Tomcat 7 to 8 in Eclipse WTP: The absolute uri: http://java.sun.com/jstl/core cannot be resolved >
'Java' 카테고리의 다른 글
이클립스 추천 플러그인 (0) | 2017.09.20 |
---|---|
[이클립스] Server - 실행 시 다른 프로젝트 참조하는 법 (0) | 2017.08.25 |
eclipse에서 git으로 관리되는 새 프로젝트 생성 / eclipse 와 github 연동 (0) | 2016.08.17 |
[eclipse tip] static import 쉽게 하기 (0) | 2016.04.15 |
김성박 - 즐거운 자바 (동영상 온라인 강의) (0) | 2016.04.11 |