[jsp] https 리다이렉트를 위한 web.xml 설정
2022. 4. 12. 17:11ㆍJSP
홈페이지를 오픈하면서 ssl 설치후 http 로 접속시 자동으로 https 로 리다이렉트를 시켜주기 위한 설정입니다.
ssl 설치와 tomcat의 server.xml 설정이 끝난뒤 web.xml 에 아래와 같이 설정을 추가하면 됩니다.
<security-constraint>
<web-resource-collection>
<web-resource-name>SSL Forward</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
'JSP' 카테고리의 다른 글
[JSP] spring java 에서 properties 불러서 사용하기 (0) | 2022.06.22 |
---|---|
[JSP] ip주소 확인 (0) | 2022.04.14 |
[JSP] .html 파일 연결 을 위한 web.xml 설정 (0) | 2022.04.12 |
[JSP] jstl 동적 변수 사용 (0) | 2022.03.14 |
[Spring] java split 특수문자 '|' 관련 이슈 (0) | 2019.05.21 |