본문 바로가기

분류 전체보기110

[Java] Quartz Job State WAITING = the normal state of a trigger, waiting for its fire time to arrive and be acquired for firing by a scheduler.PAUSED = means that one of the scheduler.pauseXXX() methods was used. The trigger is not eligible for being fired until it is resumed.ACQUIRED = a scheduler node has identified this trigger as the next trigger it will fire - may still be waiting for its fire time to arrive. Afte.. 2019. 3. 18.
[Java] Map 반복(Iteration)시키는 3가지 방법 이 세가지 방법 말고도 뭐 다른 방법이 있겠지만 대충 요 3가지 정도만 알고 있어도 충분하고도 넘칠것 같다. 이전까지는 제일 첫번째 방법으로만 Map 에 있는 것들을 꺼내서 썼었는데 세번째 방법도 꽤 간결하고 가독성도 좋은것 같아 앞으로 세번째 방법을 주로 써야 겠다는 생각을 해본다. package com.tistory.stove99; import java.util.HashMap;import java.util.Iterator;import java.util.Map; public class MapIterationSample { public static void main(String[] agrs) { Map map = new HashMap(); map.put("키1", "값1"); map.put("키2", ".. 2019. 3. 15.
[Web] Jquery ui - Datepicker 다국어 처리 jQuery UI의 Datepicker 위젯을 이용하면 날짜 선택 상자를 쉽게 구현할 수 있다. jQuery CDN 경로 제공처 : http://code.jquery.com/jquery/jQuery UI CDN 경로 제공처 : http://code.jquery.com/ui/jQuery UI Datepicker Widget API Documentation : http://api.jqueryui.com/datepicker/ datepicker 메서드 사용법 $(텍스트상자).datepicker({ 매개변수명: 값, ... }) datepicker 메소드의 주요 매개변수 분류매개변수 설명 기본값 기본dateFormat 날짜의 형식 yy/mm/dd ( ko의 경우 ) autoSize 날짜의 형식에 맞춰 입력란의 .. 2019. 3. 13.
[Spring] hotswap 빠른 생산성을 위해서 재기동 없이 서버 Hot swapping 하는 방법 (IntelliJ & Eclipse) 빠른 생산성을 위해서 재기동 없이 서버 Hot swapping 하는 방법 (IntelliJ & Eclipse)Facebook JetBrains Korea User Grouphttps://www.facebook.com/groups/1821879151380372/새롭게 JetBrains Facebook User Group을 만들었습니다. 많이 오셔서 공유 해요 (source : http://tomselt.files.wordpress.com/2013/05/codeswitching1.jpg?w=1200)PIKICAST 입사 후에 오랫만에 블로깅을 하네요. 정말 블로깅 할 내용들이 많이 있지만 점점 시니어로써 성장 하면서 시간을 내기가 쉽지는 않네요.. 그래도 틈틈히 실무에 도움이 될만한 것들은 공유를 해볼려고 .. 2019. 3. 8.