git 간단한 사용법

0.설정하기 // git commit에 사용될 username git config –global user.name “your_name” // git commit에 사용될 email git config –global user.email “your_email@example.com // 설정한 내용을 아래의 […]

더 보기 →

java date timezone 변경

다국어처리시 timezone 이용  String day = “2015-12-14 15:21:12”; String dateFormat = “yyyy-MM-dd HH:mm:ss”; SimpleDateFormat df = new SimpleDateFormat(dateFormat); Date date = df.parse(day); TimeZone tz; tz […]

더 보기 →

xml java객체로 변환(dtd이용)

1.xjc설치 다운로드URL https://jaxb.java.net/2.2.11/ 다운로드받은 폴더를 압축을 해제하고 bin디렉토리로 이동하면 xjc실행파일을 확인할 수 있다. command창에서 xjc실행파일위치로 이동한후 아래와 같은 명령어를 실행하면된다. xjc -d <output directory> -p <package […]

더 보기 →

yeoman 사용하기

yeoman은 자바스크립트 기반의 프론트앤드 개발을 도와주는 자동화 툴이다. 자바에서 요즘 많이 사용되는 Maven과 유사하다.  1.설치 yo 설치 npm install -g yo  bower설치 npm install -g bower […]

더 보기 →

grunt 사용하기

grunt는 사전정의된 task 단위로 실행되며 command line을 통해 동작하는 자바스크립트 빌드 툴이라는 뜻이다. npm을 통해서 설치할수 있습니다. node.js가 설치되어있어야 합니다.   1.설치 npm install -g grunt-cli […]

더 보기 →

bower 사용하기

bower는 웹 프론트엔드 컴포넌트를 관리해주는 패키지 매니져입니다. jquery ,bootstrap과 같은 라이브러리를 관리, 설치 할 수 있습니다. npm을 통해서 설치할수 있습니다. node.js가 설치되어있어야 합니다.   1.node.js […]

더 보기 →

[XML] Self Close Tag 해결

<회원> <아이디>hong1234</아이디> <성명>홍길동</성명> <비고 /> </회원>  내용이 비어 있는 엘리먼트(Self Close Tag)가 있다.<비고 />가 <비고></비고>로 표현되지 않고 있다. http://www.jdom.org/docs/apidocs/org/jdom2/output/Format.html#setExpandEmptyElements(boolean) 위 API를 참고하면 된다.   [출처]http://stackoverflow.com/questions/3497802/how-can-i-create-a-self-closing-tag-using-jdom

더 보기 →

maven runnable jar 만들기

<build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>Main 실행함수 클래스(com.talkDev.main.Main)</mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> […]

더 보기 →

select boxes 플러그인

select boxes ui 쉽게 변경하기   사용법 $(“.chosen-select”).chosen({max_selected_options: 5}); option allow_single_deselect:true disable_search_threshold:10 no_results_text:’Oops, nothing found!’ max_selected_options : 5 width:”95%”  http://harvesthq.github.io/chosen/

더 보기 →