프로젝트명 변경 후
org.xml.sax.SAXParseException; systemId: jndi:/localhost/WEB-INF/web.xml; lineNumber: 2; columnNumber: 193; "xmlns" 속성이 "web-app" 요소에 대해 이미 지정되었습니다.
톰캣 로드 시 에러
=> 프로젝트명 변경시 web.xml도 같이 변경됨..
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
=>
<web-app id="WebApp_ID" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
'etc' 카테고리의 다른 글
윈도우7 계정 비밀번호 분실 시(윈도우7시디필요) (0) | 2016.05.17 |
---|---|
이클립스 server 탭이 없는경우 (0) | 2016.05.09 |
이클립스에서 복사 및 붙여넣기 할 때 속도가 느려지는 현상 해결방법 (0) | 2016.05.04 |
이클립스 기본 클래스 [클래스명] 을(를) 찾거나 로드할 수 없습니다. (0) | 2016.04.29 |
maven nexus 서버 가이드 (0) | 2015.10.08 |