git 간단한 사용법
0.설정하기 // git commit에 사용될 username git config –global user.name “your_name” // git commit에 사용될 email git config –global user.email “your_email@example.com // 설정한 내용을 아래의 […]
더 보기 →0.설정하기 // git commit에 사용될 username git config –global user.name “your_name” // git commit에 사용될 email git config –global user.email “your_email@example.com // 설정한 내용을 아래의 […]
더 보기 →다국어처리시 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 […]
더 보기 →1.xjc설치 다운로드URL https://jaxb.java.net/2.2.11/ 다운로드받은 폴더를 압축을 해제하고 bin디렉토리로 이동하면 xjc실행파일을 확인할 수 있다. command창에서 xjc실행파일위치로 이동한후 아래와 같은 명령어를 실행하면된다. xjc -d <output directory> -p <package […]
더 보기 →yeoman은 자바스크립트 기반의 프론트앤드 개발을 도와주는 자동화 툴이다. 자바에서 요즘 많이 사용되는 Maven과 유사하다. 1.설치 yo 설치 npm install -g yo bower설치 npm install -g bower […]
더 보기 →grunt는 사전정의된 task 단위로 실행되며 command line을 통해 동작하는 자바스크립트 빌드 툴이라는 뜻이다. npm을 통해서 설치할수 있습니다. node.js가 설치되어있어야 합니다. 1.설치 npm install -g grunt-cli […]
더 보기 →bower는 웹 프론트엔드 컴포넌트를 관리해주는 패키지 매니져입니다. jquery ,bootstrap과 같은 라이브러리를 관리, 설치 할 수 있습니다. npm을 통해서 설치할수 있습니다. node.js가 설치되어있어야 합니다. 1.node.js […]
더 보기 →<회원> <아이디>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
더 보기 →<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> […]
더 보기 →오늘도 우리의 XecureWeb 에 대해서 정리를 기록한다. xecureweb.js 파일 안에 보면accept_cert_npki 변수가 선언되어 있다. 여기서 인증서(npki) 발급자를 추가해 주면 인증서 목록이 잘 나온다.ex) 인증서 발급자 […]
더 보기 →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/
더 보기 →