멍청멍청기록
-
"productList": [ { "languageCd": null, "venueSeq": 634, "prodSeq": 3000003127, "perfSeq": 3205, "regUserSeq": 100, "delivFee": null, "tktFee": null, "perfMainNm": "내가 만드는 궁그르(유아)", "venueNm": "어린이문화원_어린이체험관_소리 워크숍룸", "hallNm": null, "hallSeq": null, "perfStartDt": "20210412", "perfEndDt": "20210531", "tktOpenDt": null, "catgNm1": null, "catgNm2": null, "vbankUseYn": null, "postDelivUseYn": null,..
JSON 형식에 따른 방법."productList": [ { "languageCd": null, "venueSeq": 634, "prodSeq": 3000003127, "perfSeq": 3205, "regUserSeq": 100, "delivFee": null, "tktFee": null, "perfMainNm": "내가 만드는 궁그르(유아)", "venueNm": "어린이문화원_어린이체험관_소리 워크숍룸", "hallNm": null, "hallSeq": null, "perfStartDt": "20210412", "perfEndDt": "20210531", "tktOpenDt": null, "catgNm1": null, "catgNm2": null, "vbankUseYn": null, "postDelivUseYn": null,..
2021.04.13 -
HTTP Status 500 – Internal Server Error Type Exception Report Message An exception occurred processing [/se2/sample/photo_uploader/file_uploader.jsp] at line [26] Description The server encountered an unexpected condition that prevented it from fulfilling the request. Exception org.apache.jasper.JasperException: An exception occurred processing [/se2/sample/photo_uploader/file_uploader.jsp] at l..
프로젝트] java.lang.UnsupportedClassVersionError: org/apache/commons/io/output/DeferredFileOutputStream : Unsupported major.minor version 52.0 에러 해결.HTTP Status 500 – Internal Server Error Type Exception Report Message An exception occurred processing [/se2/sample/photo_uploader/file_uploader.jsp] at line [26] Description The server encountered an unexpected condition that prevented it from fulfilling the request. Exception org.apache.jasper.JasperException: An exception occurred processing [/se2/sample/photo_uploader/file_uploader.jsp] at l..
2021.03.22 -
Enumeration enumSession = session.getAttributeNames(); while(enumSession.hasMoreElements()){ String getse = enumSession.nextElement()+""; System.out.println("===> session : "+getse+" : " + (String)session.getAttribute(getse)); } (기존에는 session.getValue()를 사용했으나 이 부분 java5 이후 삭제 됐다.) if(session.getAttribute("TA_MANAGER_NO") != null){ ..} 유지보수하고 있는 프로젝트에서 index페이지 내에서 session의 정보를 이용하고 있다. session의..
프로젝트] session 정보 확인하기.Enumeration enumSession = session.getAttributeNames(); while(enumSession.hasMoreElements()){ String getse = enumSession.nextElement()+""; System.out.println("===> session : "+getse+" : " + (String)session.getAttribute(getse)); } (기존에는 session.getValue()를 사용했으나 이 부분 java5 이후 삭제 됐다.) if(session.getAttribute("TA_MANAGER_NO") != null){ ..} 유지보수하고 있는 프로젝트에서 index페이지 내에서 session의 정보를 이용하고 있다. session의..
2021.03.16 -
1. 환경 1) JAVA 1.7 2. 과정 String changePwFalg = ""; /* 날짜 포맷 셋팅 */ SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); Calendar cal = Calendar.getInstance(); /** * 2021. 01. 14 * test.properties 에서 90일 값을 셋팅 후 Environment 객체를 호출해 사용. * 자바단에서 이후 날짜를 변경하지 않는다. */ final long passwordDateLimit = Integer.parseInt(Environment.getPasswordDateLimit()); /** * 2021. 01. 14 * TA_MANAGER 테이블의 PASSWORD_DA..
프로젝트] 날짜 구하기 feat. 비밀번호 90일 만료 기간 설정하기.1. 환경 1) JAVA 1.7 2. 과정 String changePwFalg = ""; /* 날짜 포맷 셋팅 */ SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); Calendar cal = Calendar.getInstance(); /** * 2021. 01. 14 * test.properties 에서 90일 값을 셋팅 후 Environment 객체를 호출해 사용. * 자바단에서 이후 날짜를 변경하지 않는다. */ final long passwordDateLimit = Integer.parseInt(Environment.getPasswordDateLimit()); /** * 2021. 01. 14 * TA_MANAGER 테이블의 PASSWORD_DA..
2021.01.14 -
출처 : https://okky.kr/article/338405
스택트레이스 읽기출처 : https://okky.kr/article/338405
2021.01.11