본문 바로가기
IT 자료

java http인지 https인지 확인하는 법

by 성곤 2016. 12. 15.
반응형

java http인지 https인지 확인하는 법

 

request.isSecure() 를 이용하면 https는 true를 뱉어낸다.

if( request.isSecure() ) {

  //https

} else {

  //http
}

// 줄여서 이렇게 삼항연산자를 이용해서 프로토콜을 확인할 수도 있다.
String protocol = request.isSecure() ? "https://" : "http://";

 

반응형

'IT 자료' 카테고리의 다른 글

리눅스 한글 폴더 이동시키기  (0) 2017.01.14
sql 옆으로 출력(콤마,)  (0) 2016.12.16
DB2 CHARINDEX (LOCATE) 사용법  (0) 2016.12.05
javascript callback  (0) 2016.11.22
DB2] LISTAGG 집계 함수  (0) 2016.11.03