내용 |
sendRedirect 했을 때 https로 리다이렉트되지 않고 http로 리다이렉트 되는 현상 해결방법.
tomcat/conf/server.xml 파일의 connector 태그에 아래 설정 추가
proxyPort=”443″ scheme=”https”
* 스프링에서 뷰 리졸버 설정에 아래 설정 추가하면 된다고 하는데 안 해봐서 모르겠음
- InternalResourceViewResolver 또는 UrlBasedViewResolver 클래스를 이용한 뷰 리졸버 설정 사용시
<beans:property name=”redirectHttp10Compatible” value=”false” />
|