egloos.zum.com/iris2380/v/588783 JEUS7에서만 발생하는 Validator error에 대한 해결책. 현재 프로젝트에서 Validator는 Hibernate validator를 사용한다. hibernate-validator-5.2.1.Final.jar와 validation-api-1.1.0.Final.jar를 이용해서 어노테이션 기반으로 서버 validation 처리를 하고 있다. 로컬환경 (JDK 1.7, egloos.zum.com
joont.tistory.com/55 참고
출처 : http://jdm.kr/blog/2 오늘은 리눅스 크론탭에 대해 알아볼까 합니다. 음, 윈도우에서는 스케줄러와 비슷하다고 보면 되겠네요."특정 시간에 특정 작업을 해야한다."라고 한다면 크론탭을 사용해 편하게 리눅스를 사용하실 수 있습니다.1. 크론탭 기본 (crontab basic)일단 기본이 되는 크론탭 사용법을 한 번 볼까요. 리눅스 쉘에서 다음처럼 입력합니다.$ crontab -e 그러면 뭔가 편집할 수 있는 곳이 로딩됩니다. 이곳이 바로 크론탭을 설정할 수 있는 장소이죠. 여기에 각종 크론탭 명령어를 입력후 콜론(:) 입력 후에 wq 를 입력해 크론탭을 갱신시킵시다.반대로 현재 크론탭에 어떤 내용이 들어있는지 보려면 다음처럼 입력하세요.$ crontab -l 그러면 cat 명령어로 파..
STS를 다운받으면 기본적으로 포함되어 있는 WAS Server.톰캣을 기반에 여러 기능을 추가. sts 에는 developer 버전이 포함됨. 특징은 아래 참고. 출처 : https://stackoverflow.com/questions/23424312/tomcat-vs-pivotal-tc-serverSpringSource tc Server is an enterprise version of Apache Tomcat, the widely used Web application server. SpringSource tc Server is hardened for enterprise use and is coupled with key operational capabilities, advanced diagnostic..
Docker 소개
1. git client 및 tortoriseGit 설치https://tortoisegit.org/download/ 2. SSH key 생성. TortoiseGit 의 Puttygen 프로그램 사용3. 인증에이전트에 key 등록. TortoiseGit의 Pageant 실행* 위 작업은 윈도우 시작 시 자동으로 실행되도록 시작프로그램으로 등록(시작프로그램 메뉴에 바로가기 등록)* 바로가기 경로 예)"C:\Program Files\TortoiseGit\bin\pageant.exe" C:\Users\Administrator\Documents\SSH\ssh.ppk 4. GitHub에 public key 등록 5. github에 신규 저장소 생성예) ssh 방식: git@github.com:jnj45/testPr..
1. git 설치하기http://git-scm.com/downloads 2. git/gitHub 설정하기 - gitHub.com 에 계정생성 - git Bash 를 실행하여 타이핑. 로컬컴퓨터에 git을 사용할 준비작업git config --global user.name "your name" git config --global user.name "your@email.com" 3. 온라인 저장소 만들기 gitHub.com 새로운 repository를 만든다. ( /testPrj1 ) 4. 로컬 저장소 만들고 초기화mkdir ~/gitRepo/testPrj1 (앞서 gitHub.com에서 만든 저장소와 동일한 이름으로)cd ~/gitRepo/testPrj1git init5. 파일 생성하고 추가하기touch ..
- Total
- Today
- Yesterday