java 소스
private void processSessionCookie(HttpSession session){
Cokie cookie = new Cookie("SSIONID", session.getid());
String contextpath = getContextPath();
cookie.sePath(contextpath)'
response.addCookie(cookie)
setAttribue("COOKIE_OVERWRITTEN_FLAG", true);
}
jsp 화면
<script>
var strCookie = document.cookie;
var serverName = "";
if(strCookie.indexOf("서버이름") != -1){
serverName = 'was1번'
}
</script>
'장기 프로젝트 > JAVA' 카테고리의 다른 글
spring java 파일 삭제 코드 (0) | 2023.02.27 |
---|---|
엑셀 다운로드 (0) | 2022.04.26 |
[JAVA]숫자외 항목 체크 (0) | 2022.04.06 |
임시번호 생성(JAVA) 방법 (0) | 2022.03.08 |
[JAVA] 알고리즘-수박수박수박 (0) | 2017.09.07 |