분류 전체보기 (4558) 썸네일형 리스트형 Javascript Array 깊은 카피를 하자 간혹 메모리 주소로 보면(얕은 복사) 안되는 경우가 있다 깊은 복사 값까지 따로 복사한다. 깊은 복사를 하자 response.forEach(function (item) { item.type = typeKey[0]; $('#ulAll').append(settingTemplate(item)); if(item.listYn === 'Y') { let newObj = Object.assign({}, item); newObj.type = typeKey[1]; ulList.push(newObj); } if(item.dnldYn === 'Y') { let newObj = Object.assign({}, item); newObj.type = typeKey[2]; ulDnld.push(newObj); } }); Azure port 열기 Vm에서 네트워크 들어가 인바운트 포트규칙에서 추가해주자 POJO를 Map으로 바꾸기 package com.fasterxml.jackson.databind; 해당 패키지에 있는 ObjectMapper를 써보자. ObjectMapper oMapper = new ObjectMapper(); Map map = oMapper.convertValue(object, Map.class); convertValue 메서드로 POJO 객체를 Map으로 변경 가능하다 혹시 LocalDateTime이 이상하게 나오는가? String format = "yyyy-MM-dd HH:mm:ss"; map.put("entryTime", dateUtils.convertDateTimeToCustomFormat(object.getDateTime(),format)); 이렇게 entry를 하나 더 넣자 화살표 키보드로 위아래 아이템 움직이기 ul li.on { background: #eee; } $('#keyword').on('keydown',function(e) { if(e.which == 13) { let liOn = $('#list li.on'); if(liOn && liOn.length > 0){ liOn.find('a').click(); } else { $('#search').trigger('click'); } } else if(e.which == 40){ fn_downUpItem('down'); } else if(e.which == 38){ fn_downUpItem('up'); } else{ $('#list').html(''); } }); Spring boot session timeout 안됨 server.session.cookie.max-age=5000 server.session.timeout=5000 위의 쿠키 설정도 해주자 그래도 안되면 EnableJdbcHttpSession 또는 EnableRedisHttpSession 가 쓰인 부분을 주석으로 하고 돌려보자 참고로 60초 이하로는 셋팅이 안됨 2021년 9월 07일 종목별 수익현황(제이티-) 종목명 : 제이티 손익 : 11,527 (-1.66%) 수량 : 65주 매수평균단가 : 10,700 매도평균단가 : 10,550 thymeleaf equals 쓰기 th:if="${#strings.equals('Y', 'Y')}" 2021년 9월 01일 종목별 수익현황(동성화인텍+) 종목명 : 동성화인텍 손익 : 97,790 (3.73%) 수량 : 233주 매수평균단가 : 11,250 매도평균단가 : 11,700 이전 1 ··· 20 21 22 23 24 25 26 ··· 570 다음