With Computer/Java
-
[Eclipse] Build path specifies execution environment JavaSE-1.8. There are no JREs installed in the workspace that are strictly compatible with this environment.With Computer/Java 2025. 2. 27. 15:18
원래 해당 프로젝트는 openjdk17을 바라보ㅏ야함 우클릭 - Quick Fix로 빠르게 오류 해결~ 아차차~jdk17로 깔아줘야하지롱아래 고수님껄로 참고함https://jiurinie.tistory.com/131 [Windows] 윈도우에 OpenJDK 17 설치[Windows] 윈도우에 OpenJDK 17 설치 윈도우에 OpenJDK17을 설치하기 위해 아래 URL에 접속하여 OpenJDK 17 압축파일을 다운로드 한다. Java Platform, Standard Edition 17 Reference Implementations Java Platform, Standard Edition 1jiurinie.tistory.com 시작 - 시스템 환경변수 설정 window + R -> cmd enter아..
-
[Eclipse] cvc-id.3: A field of identity constraint 'web-app-filter-name-uniqueness' matched element 'web-app', but this element does not have a simple type.With Computer/Java 2021. 10. 28. 20:34
web.xml 에서 해당 문구 발견 http://JAVA.sun.com 또는http://Java.sun.com으로 변경 eclipse 2021-06 오류인가부다~~~~~~~~~ 참고: https://stackoverflow.com/questions/3219639/cvc-id-3-error-in-web-xml cvc-id.3 error in web.xml I'm getting this error message while editing web.xml file in eclipse for SpringMVC web-app: cvc-id.3: A field of identity constraint 'web-app-servlet-name-uniqueness' matched element 'web... stackove..
-
[Eclipse] Error: Could not find or load main class org.apache.catalina.startup.BootstrapCaused by: java.lang.ClassNotFoundException: org.apache.catalina.startup.BootstrapWith Computer/Java 2021. 10. 28. 19:49
이클립스에서 톰캣 서버 설정 후 localhost를 호출했는데... 계속 오류가 나서 Tomcan 배치파일로 테스트를 먼저해봄- 이상무 확인 이클립스에서 오류난게 확실해서 서버다시 다 지우고 프로젝트 새로 불러옴 그때부터 오류를 만남.. ㅠㅠ왜 나를 힘들게하니.. 덕분에 잊고있던 명령어가 생각남... 1. cmd 실행 2. 사용되고 있는 포트 확인을 위한 명령어 입력 netstat -a -n -o -p tcp 3. 해당 포트(8080 등) 를 사용하고 있는 프로그램 pid 찾아서 끄기 taskkill /f /pid {{pid no}} 4. tomcat 재실행 출처: https://life-with-coding.tistory.com/372 [나다움]