import만하면 될 줄알았던 프로젝트인데 말썽이 많아서 하나씩 붙여보려고 한다.
어차피 ssd도 갈아서..jar이고 환경설정이고 남아있는게 없다...ㅜ
1.다이나믹 웹 프로젝트 생성
src폴더에 기존 패키지와 파일 생성
2. import com.drew...라는 곳에서 에러가 난다.
사진의 메타데이터를 가져오기위해 필요한 부분
metadata-extractor-2.4.0-beta-1.jar
xmpcore.jar 를 추가했다.
위치는 WEB-INF / lib / jar
metadata-extractor-2.4.0-beta-1.jar
3. 프로젝트를 실행시키니 the requestes resource id not available 라는 404에러가 난다.
java파일만 넣고 jsp파일을 안 넣었다. 넣어줌.
그런데 <%@taglib prefix ="c" uri="http://java.sun.com/jsp/jstl/core" %> 에 빨간줄이 생겼다.
에러 메시지는 con not find the tag livrary descriptor for "http://java.sun.com/jsp/jstl/core"
-> jstl이 없어서 발생한 문제로 web-inf/lib에 jstl-1.2.jar추가했다.
4.다시 실행 404에러
lib에 taglibs-standard-impl-1.2.1 추가 일단 jsp화면보임. db연동 필요 없는것만.
taglibs-standard-impl-1.2.1.jar
5. db연동이 필요한 곳에 404에러가 난다.
검색어 : 이클립스 jdbc mysql
jdbc를 사용해 mysql과 연동하기 위해 mysql-connector-java-5.1.34-bin를 넣어줌
6. 그런데도 jsp파일을 못찾는다고 뜬다. 음.. web.xml파일을 안 넣었따.
web-inf밑에 web.xml파일 추가. - 새로운 에러가 뜬다.
'문제점해결' 카테고리의 다른 글
FTP 프로그램에서 폴더삭제가 안될 때 (0) | 2014.12.18 |
---|---|
프로젝트를 실행하려는데 에러가 넘쳐난다. -2 (0) | 2014.12.16 |
error: Error: No resource found that matches the given name (at 'theme' with value '@style/ Transparent'). (0) | 2014.10.20 |
your project contains errors please fix them before running your application (0) | 2014.10.17 |
An exception stack trace is not available. (0) | 2014.10.17 |