spring security : 로그인 https 적용
2015. 9. 3. 15:19ㆍ모두모두 개발자다요/JAVA
<security:http auto-config='true' use-expressions="true">
<security:intercept-url pattern="/login.hsc" access="permitAll" requires-channel="https"/>
<security:intercept-url pattern="/loginFail.hsc" access="permitAll" requires-channel="https"/>
<security:intercept-url pattern="/loginProcess.hsc" access="permitAll" requires-channel="https"/>
....
....
....
<security:intercept-url pattern="/**" access="permitAll" requires-channel="http"/>
</security:http>
로그인 입력폼부터 https 타고 끝나면 http 로 돌아가게...
반응형
'모두모두 개발자다요 > JAVA' 카테고리의 다른 글
이클립스 Search 결과 파일 새 창으로 오픈 설정 (0) | 2017.06.27 |
---|---|
maven spring-boot run (port 옵션) (0) | 2017.03.30 |
파일 업로드 삽질 얘기 (0) | 2014.04.10 |
"javap" 컴파일된 java class 버전확인 (0) | 2011.09.26 |
JAVA MD5 (0) | 2011.02.08 |