본문 바로가기

Error8

[Error] Nginx reverse proxy causing 504 Gateway Timeout sever block 수정 하여 해결 -변경 전 server { listen 80; server_name mywebsite.com; root /home/user/public_html/mywebsite.com/public; access_log /home/user/public_html/mywebsite.com/log/access.log upstreamlog; error_log /home/user/public_html/mywebsite.com/log/error.log; location / { proxy_pass http://xxx.xxx.xxx.xxx:8001; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote.. 2020. 2. 6.
[Error] org.apache.catalina.core.ContainerBase removeChild servlet version 관련 Error이다. [문제해결] 1. 프로젝트 우클릭 -> Build Path 2. Configure Build Path 3. Project Facets 4. Java version 확인, Dynamic Web Module version 확인 5. 오른쪽 Runtimes 에서 서버 런타임 선택 6. maven clean 7. update project 2019. 7. 2.
[Error] Error configuring application listener of class org.springframework.web.context.ContextLoaderListener 1. 문제상황 > 다음과 같은 에러와 함께 Eclipse에서 Tomcat이 실행되지 않았다. 2. 문제확인 > Maven > Update Project Configuration 실행시 maven 라이브러리 경로가 삭제되는 현상이 발생한다고 한다. 3. 문제해결 > 다음 메뉴에서 경로를 설정해주면 정상적으로 서버가 시작된다. * 프로젝트 우클릭 > properties * Deployment Assembly > Add 버튼 > Java Build Path Entries > Maven Dependencies 선택 > Apply버튼 Reference http://myblog.opendocs.co.kr/archives/1657 [문제해결] 심각: Error configuring application listene.. 2019. 7. 2.
[Error] java compiler level does not match the version of the installed java project facet 문제점 컴파일러의 레벨과 Eclipse설정된 버전이 일치되지 않아서 생기는 문제이다. 해결방법 1. project 우클릭 > properties 2. Project Facets > Java 를 자신이 사용하고있는 컴파일러 버전과 맞도록 설정한다. 3. Apply 4. Proplems tab에서 Error가 사라진 것을 확인할 수 있다. Reference http://myblog.opendocs.co.kr/archives/1566 [문제해결] Java compiler level does not match the version of the installed Java project facet. | Opendocs 1. 문제상황 > Eclipse (STS 3.6.3.RELEASE)에서 다음과 같은 에러가 표시되.. 2019. 6. 12.