에러 2

java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener 오류 에러 해결방법

java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener 에러의 경우 maven > update project config > 실행시 maven이라는 경로가 삭제되는 경우가 있는데 이럴때 다시 경로를 설정해주면 정상적으로 서버가 시작된다 프로젝트 마우스 우측 클릭 > properties> deployment assembly > add> java build path entries > next maven dependencies > finish 그럼 하단에 maven dependencies가 들어간걸 볼 수 있음 apply > apply and close

development♥ 2022.09.27

Element 'dependency' cannot contain text content. The content type is defined as element-only. Code: 오류

pom.xml파일 작성하다가 Element 'dependency' cannot contain text content. The content type is defined as element-only. Code: 오류가 났는데 이유는 3가지이다. 1. 를 안넣어주었거나 2. 이클립스의 문제 3. 오타 ( 주석처리 등) 이 오류에 대해서 검색해봤을때 보통은 주석처리관련 오타로 인한 오류인 경우가 많은데 나같은경우는 다른 프로젝트에있는 코드를 복붙해왔는데 다른 폼 파일에서는 오류가안나는데 이프로젝트에서만 오류가 나는거라서 메이븐저장소에가서 코드를 새로 복사해왔다. * 이클립스의 문제일 경우 이클립스를 껐다 켜보기 혹은 코드를 새로 다시 작성하기

반응형