[상황]localhost에서 연결을 거부했습니다.
Posted on 2020. 6. 16. 10:43
Filed Under Web Programming/개발환경
spring기반의 구.웹 소스를 이클립스에 import 해서 실행했을때..
localhost에서 연결을 거부했습니다.
"localhost에서 연결을 거부했습니다."
라는 메시지가 표시되면서 실행안되어서..
[TOMCAT | 톰캣] tomcat서버 에러 발생시 해결 방법(tomcat 7 failed to start in eclipse) | 2015. 5. 21. 00:05
에서 얘기하는 조치를 모두 해봤는데도 여전히 같은 상황시
6) web.xml의 <security..>를 코멘트 처리해볼것!
<!-- 코멘트 처리 부분예
<security-constraint>
<web-resource-collection>
<web-resource-name>Entire Application</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
<security-role>
<description>
Nobody should be in this role so JSP files are protected
from direct access.
</description>
<role-name>nobody</role-name>
</security-role>
-->
반응형