Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- json
- checbox
- 호환성
- JSTL
- 날짜
- HTML5
- 전자정부 표준프레임워크
- 문자열
- 네이버스마트 에디터
- spring form tag
- RADIO
- switch
- java
- exception
- MYSQL
- 스크립트
- Oracle
- 톰캣
- 오라클
- null
- 웹 플랫폼 설치 관리자
- jquery
- html
- 한글
- @RequestBody
- php
- maven
- 이클립스
- SSL
- DB
Archives
- Today
- Total
목록controller (1)
개인적인 정리
redirect 또는 http:// --> https:// 변환
String url = request.getRequestURL().toString();if(url.startsWith("http://") && url.indexOf("localhost") < 0) { url = url.replaceAll("http://", "https://"); url = url.replaceAll(":80", ""); return "redirect:"+url;} controller 단에서 사용하니 좋다. return "redirect:"+url; spring controller 에서 사용하는 건가? 뭔가 이해는 못했지만 잘 사용중
전자정부표준프레임워크
2016. 11. 15. 09:15