본문 바로가기

개발스토리

(33)
Windows Docker Yona 설치 DOCKER 설치 https://soft33.tistory.com/entry/Window-Docker-Descktop-%EC%84%A4%EC%B9%98 MARIADB 이미지 인스톨 https://soft33.tistory.com/entry/Docker-Mariadb-%EC%84%A4%EC%B9%98 YONA 설치 YONA 다운로드 - https://github.com/yona-projects/yona/releases mariadb 데이터 베이스 및 계정 생성 참조 - https://velog.io/@chappse6/MariaDB-%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4-%EC%83%9D%EC%84%B1-%EA%B3%84%EC%A0%95-%EC%83..
인텔리제이 윈도우 단축키 출처: https://backendcode.tistory.com/232 [무작정 개발:티스토리] 기능 단축키 단축키 검색 Ctrl + Shift + a 자동 완성 Ctrl + Space 구문 완성( ; 닫아줌) Ctrl + Shift + Enter 파일 검색 Ctrl + Shift + n 파일 내 텍스트 검색 Ctrl + Shift + f 라인 번호로 이동 Ctrl + g 커서가 해당 라인 줄바꿈 Shift + enter 한줄 삭제 Ctrl + y 한줄 복사 Ctrl + d 기능 단축키 안쓰는 import 삭제 Ctrl + alt + o 이전으로 되돌리기(Undo) Ctrl + z 작업 복구(Redo) Ctrl + Shift + z 선택한 코드 위아래로 이동 Ctrl + Shift + ↑↓ 한줄 주석 (..
VS code JAVA import 에러 참조 - https://velog.io/@doobyeol/VS-code-JAVA-import-%EC%97%90%EB%9F%AC VS code JAVA import 에러 cannot be resolved to a typeJava(16777218) 참고 : https://github.com/redhat-developer/vscode-java/wiki/Troubleshooting이런 에러가 발생했을 때 Java Language S velog.io 해당 위치 폴더 삭제 C:\Users\user\AppData\Roaming\Code\User\workspaceStorage
이클립스 Aptana 플러그인 http://www.aptana.com/products/studio3/success_plugin.htmlPlease copy the following Update Site URL to your clipboard and then follow the steps listed below to add this URL to your Available Software Sites list. Attempting to access this URL using your web browser will return an Access Denied error. http://download.aptana.com/studio3/plugin/install From the Help menu, select Install New Software..
개발 관련 사이트 정리 #npp 툴 사이트 https://notepad-plus-plus.org/
배포툴 허드슨 http://bcho.tistory.com/172
이클립스 자동 주석 및 JAVADOC 출력 #이클립스 자동 주석 달기 펌 - http://zzznara2.tistory.com/75 Window > Preferences > Java > Code Style > Code Templates 클릭Comments > Types,Methods 작성 ex)/* * * @author : ${user} * @since : ${date} * ${tags}*/ #JAVADOC에 맞추어 주석달기 펌 - http://arihong218.tistory.com/entry/JavaDoc%EC%9D%84-%EC%93%B0%EA%B8%B0-%EC%9C%84%ED%95%9C-%EC%A3%BC%EC%84%9D%EB%8B%AC%EA%B8%B0-%EB%B0%A9%EB%B2%95 3. 블럭태그의 종류@author 이름클래스나 인터페이스..
정규식 사이트 및 예제 #정규식 확인 사이트 http://www.rubular.com/ http://regexr.com/ #잠고 url http://kio.zc.bz/Lecture/regexp.htmlhttp://egloos.zum.com/js7309/v/11117112http://venustas.tistory.com/entry/%EC%A0%95%EA%B7%9C%EC%8B%9D #정규식 예제1 1. 숫자/특수문자를 포함한 10자리 이상의 문자열로 구성 ^(?=.*[a-zA-Z])(?=.*[^a-zA-Z0-9])(?=.*[0-9]).{10,100}$ 2. 5-12자, 영문,숫자, 특수문자(.) 허용 ^[0-9a-zA-Z.]{5,12}$ 3. 0또는1또는2또는3 0|1|2|3 4. $,&,',", 가 포함되지않는 형식 ^((?![..