@SpringBootApplication public class ExampleApplication { @PostConstruct public void started() { TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul")); Locale.setDefault(Locale.KOREA); } public static void main(String[] args) { SpringApplication.run(ExampleApplication.class, args); } } 끝 ~~~
형식 %[argument_index$][flags][width]conversion Conversion Description s 문자 d 숫자 x 16진수 o 8진수 f 실수 e.g. String strTags = "학교종이 %s 어서 모이자 선생님이 우리를 %s %d"; strTags = String.format(strTags, "땡땡땡", "기다리신다", 12); System.out.println(strTags); 결과 학교종이 땡땡땡 어서 모이자 선생님이 우리를 기다리신다 12 옵션 테스트 flag가 '-'인 경우 왼쪽 정렬이 된다. 길이 설정이 글자 보다 긴 경우 공백으로 채워진다. e.g. System.out.println("12345678901234567890"); System.out.print..
1. string to array const str = value.split(',') // 구분자 2. array to string const str = arr.join(",") 3. array to set const set = new Set(arr) 4. set to array const arr = Array.from(set) 5. array foreach const arr = v.split(','); const newArr = [] arr.forEach(element => { if(element) newArr.push(element.trim()) }); 6. 배열에 값 추가 // push 마지막에 추가 arr.push(item) // unshift 처음에 추가 arr.unshift("하나") 7. s..
중복 체크 등 함수 호출할 때 예시입니다.
증상 input에 검색어를 "구글"이라고 입력을 하면 "구"라는 문자만 전달이 되고 마지막 문자가 짤리는 현상이 있습니다. VueJs에서는 이런 경우 input 이벤트를 이용하라고 권고합니다. For languages that require an IME (Chinese, Japanese, Korean etc.), you’ll notice that v-model doesn’t get updated during IME composition. If you want to cater for these updates as well, use input event instead. https://vuejs.org/v2/guide/forms.html#vmodel-ime-tip 수정 전 소스 수정 후 소스
이번달 popover, modal 관련 이벤트 Modal Events Event Description show.bs.modal Occurs when the modal is about to be shown shown.bs.modal Occurs when the modal is fully shown (after CSS transitions have completed) hide.bs.modal Occurs when the modal is about to be hidden hidden.bs.modal Occurs when the modal is fully hidden (after CSS transitions have completed)
일부 페이지 IE 8에서 볼 수 있게 해달라는 요청을 받음. 1. bootstrap -ie8 관련 소스 다운로드 https://github.com/coliff/bootstrap-ie8 coliff/bootstrap-ie8 Bootstrap 4 for IE8 and IE9. Contribute to coliff/bootstrap-ie8 development by creating an account on GitHub. github.com 2. jquery 1.12 다운로드 https://blog.jquery.com/2016/02/22/jquery-1-12-1-and-2-2-1-released/ jQuery 1.12.1 and 2.2.1 Released | Official jQuery Blog jQuery 1..
Spring Boot, RestTemplate으로 API 호출 시 에러 상태 1. 업체의 Rest Service 운영에서 토큰 정보를 가져온다. -> 성공2. 업체의 Rest Service 개발에서 토큰 정보를 가져온다. -> 실패 에러 메시지 org.springframework.web.client.ResourceAccessException: I/O error on POST request for "https://xxx.xxx.com/security/auth/token": Received fatal alert: handshake_failure; nested exception is javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_fa..
시스템이 갑자기 죽어서 로그를 보니 ... 다운로드를 클릭했는데 아무런 화면의 변화가 없으니 연달아 5번을 클릭했네요. 하필 그때 또 메모리를 엄청 잡아 먹는 요청이 날아 갔고... 일단 이중 요청을 막고 요청시 spinner를 보여 주기로 했습니다. 단순히 이중 요청 막는 것은 간단한 플래그하나 심으면 될 듯합니다. 12345678910var isProcess = false;function doSomething(){ if(isProcess){ alert(처리 중입니다. 나중에 다시 하세요"); return; } isProcess = true; ... ...} Colored by Color Scriptercs 그런데 ... 요청의 결과를 알 수가 없습니다. location.href 라니 ... 123fu..
- Total
- Today
- Yesterday
- RESTful
- 스프링
- thymeleaf
- SHEETJS
- ag grid
- Javascript
- listToMap
- 샘플
- 그리드
- mybatis
- 메시지
- oracle
- example
- 엑셀
- sample
- AG-GRID
- restful서비스
- springboot
- java
- 설정
- 스프링부트
- REST
- Spring Boot
- spring
- lombok
- UI
- 타임리프
- mapToList
- 예제
- cache
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |