본문 바로가기

코딩30

[HttpServletRequest] request 출력 // 요청 파라미터 출력System.out.println("Request Parameters:");Map parameterMap = request.getParameterMap();for (Map.Entry entry : parameterMap.entrySet()) { System.out.println("Key: " + entry.getKey() + ", Value: " + String.join(", ", entry.getValue()));} 콘솔결과 : 2024. 7. 25.
[php] db 에서 조회한 날짜중 가장 최근날짜 selected >2024 >2025 >2026 >2027 "> 2024. 7. 22.
[php] 데이터베이스 날짜 select ">   결과 2024. 7. 22.
[java] java로 xml 다운로드 @RequestMapping(value="/convertToXml.do", produces="application/x-msdownload;charset=utf-8") public void signInsertToXml(@ModelAttribute("searchVO") ReservationReportVO vo, HttpServletRequest request, HttpServletResponse response) throws Exception { logger.info("CALL //convertToXml.do"); //xml생성 // 현재 시간 String currentTime = DateUtil.getCurrentDateTime(); //String xmlNm = "_sign_".concat(cu.. 2024. 7. 1.
[java] xml 생성 public String signInsertToXml(@ModelAttribute("searchVO") UserVO vo,Model model, HttpServletRequest request) throws Exception { logger.info("CALL /signInsertToXml.do"); //xml생성 String base64Code = ""; // 현재 시간 String currentTime = DateUtil.getCurrentDateTime(); String signKeyNm=""; String xmlNm = "_sign_".concat(currentTime); //XML 파일 경로 String SRC = ""; //firstPdf + 이미지 합쳐진 최종 pdf파일 .. 2024. 6. 19.
[java] xsl+xml 을 pdf파일로 변환하기 @RequestMapping(value = "/sign/convertToPDF.do") public void convertToPDF() throws IOException, FOPException, TransformerException, SAXException { // the XSL FO file File xsltFile = new File("src/main/resources/static/homepage/xml/employeesfo.xsl"); // the XML file which provides the input StreamSource xmlSource = new StreamSource(new File("src/main/resources/static/homepage/xml/_sign_20240.. 2024. 6. 19.
[JavaScript] 팝업 날짜 지정 오늘 하루 이 창을 열지 않음 [닫기] .popup p span{font-size:20px} #popup1, #popup2, #popup3, #popup4 { position: absolute; top: 7%; max-width: 400px; width: 78%; height: auto; padding: 10px; border: 1px solid rgb(221, 221, 221); background: rgb(255, 255, 255); box-shadow: 2px 2px 6px #666; display: none; } var today = new Date(); // html 에서 data-expired 가 설정된 팝업 div 들 찾기 var popup = document.querySelectorAll(.. 2024. 2. 22.
[Vue.js] Vue.js 기초 1. 디렉티브 : 'v-' 로 시작하는 속성. 주로 데이터 바인딩과 관련된 처리 * v-if, v-bind, key 등은 속성임 2. 데이터 바인딩: 데이터와 렌더링을 동기화하는 구조 ● 텍스트 바인딩 {{ message }} * new Vue() 는 한 개만 만들고, 컴포넌트로 UI를 구축한다. //관례적으로 app 또는 vm(ViewModel)라는 변수 이름을 사용함 var app = new Vue({ // new Vue() 는 한 개만 만들고, 컴포넌트로 UI를 구축한다 el: '#app', data: { message: 'Hello Vue.js' } }) console.log(app.message) // app.data.message 가 아니라는 점 주의 ● 반복 렌더링 data옵션에 등록한 배열.. 2024. 1. 17.
[Swiper] 라이브러리 포커스이동 swiper 라이브러리를 사용해서 팝업이미지들이 자동으로 재생되고 있음 키보드 tab을 눌렀을때 a링크에 포커스가 잡히면 해당 이미지가 화면에 나오도록 라이브러리와 스크립트 이용하기 . var timer = 4000; //4000 var mainSwiper = new Swiper( "#popupList", { slidesPerView: 1, autoplay: { delay: timer, disableOnInteraction: true, }, loop: true, allowTouchMove : true, effect: 'fade', fadeEffect: { crossFade: true, }, pagination: { el: ".swiper-pagination", loop: true, clickable: t.. 2023. 11. 17.
728x90