A
-
맨날 까먹어 long prodSeq = Optional.ofNullable(productList.get(0).getProdSeq()).orElse(0L); tProdSdVo.setProdSeq(prodSeq); //tProdSdVo.setChnlCd("CS"); List schedullList = ticketingDao.getTProdSdStartDtList(tProdSdVo); resultData.put("schedullList", schedullList); int idx = 0; long[] arrSdSeq = new long[schedullList.size()]; for (TProdSd tProdSd : schedullList) { arrSdSeq[idx] = tProdSd.getSdSeq(); i..
프로젝트] VO 배열 넣기맨날 까먹어 long prodSeq = Optional.ofNullable(productList.get(0).getProdSeq()).orElse(0L); tProdSdVo.setProdSeq(prodSeq); //tProdSdVo.setChnlCd("CS"); List schedullList = ticketingDao.getTProdSdStartDtList(tProdSdVo); resultData.put("schedullList", schedullList); int idx = 0; long[] arrSdSeq = new long[schedullList.size()]; for (TProdSd tProdSd : schedullList) { arrSdSeq[idx] = tProdSd.getSdSeq(); i..
2021.04.14 -
"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 -
환경 : VS CODE 1.54.3 목적 : VSCode에서 java 및 SpringBoot 프로젝트를 하려고함. 설치된 플러그인 Java Extension Pack Spring Boot Extension Pack lombok project Manager 스프링부트 프로젝트 모듈을 4개 동시에 띄우는 경우가 발생했습니다. 아래가 최종적으로 나와야하는 창입니다. 문제 1) 1. SPRING BOOT DASHBOARD가 뜨지 않음. 분명 플러그인을 다 설치했는데 위 스크린샷에서처럼 Spring Boot DashBoard가 뜨지 않아서 VSCode 재설치 및 여러 삽질을 함. 해결 1) 1. 해결 방안은 4개의 프로젝트 중 상관없이 java파일을 열어봅니다. 그러면 자동으로 java파일을 읽어서 Spring ..
VSCode] Spring Boot DashBoard 활성화 안되는 문제 해결하기.환경 : VS CODE 1.54.3 목적 : VSCode에서 java 및 SpringBoot 프로젝트를 하려고함. 설치된 플러그인 Java Extension Pack Spring Boot Extension Pack lombok project Manager 스프링부트 프로젝트 모듈을 4개 동시에 띄우는 경우가 발생했습니다. 아래가 최종적으로 나와야하는 창입니다. 문제 1) 1. SPRING BOOT DASHBOARD가 뜨지 않음. 분명 플러그인을 다 설치했는데 위 스크린샷에서처럼 Spring Boot DashBoard가 뜨지 않아서 VSCode 재설치 및 여러 삽질을 함. 해결 1) 1. 해결 방안은 4개의 프로젝트 중 상관없이 java파일을 열어봅니다. 그러면 자동으로 java파일을 읽어서 Spring ..
2021.03.18 -
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