목록Developer Tools (37)
써먹는 웹개발

※ 프로젝트를 만들기만 한 상태라면 반드시 이것 먼저 할 것 STS 혹은 Eclipse에서 한글이 깨지는 이유는 기본 인코딩이 MS949로 되어 있기 때문입니다. 따라서 인코딩을 모두 UTF-8로 바꾸어줘야합니다. IDE 상단 [Window] -> [Preferences] - [General] -> [Workspace] 옵션으로 가면 Text file encoding 기본 옵션이 Default(MS949)가 되어 있을 것입니다. 이 부분을 Other -> UTF-8 로 바꾸어주면 해결 완료! 출처: https://jaimemin.tistory.com/1503 [꾸준함]
Spring Framework를 이용한 프로젝트를 진행하다보면 IDE로 Eclipse와 STS를 많이 사용하는 것을 알 수 있다. ※ IDE : 공통된 개발자 툴을 하나의 그래픽 사용자 인터페이스(GUI)로 결합하는 애플리케이션을 구축하기 위한 소프트웨어 간단하게 STS는 Eclipse 베이스에 Spring F(rame)/W(ork) plugin이 자동으로 추가된 IDE라고 생각하면 된다. 기존 Eclipse - STS plugin 별도 추가 설치 (Marketplace 이용) STS(Spring Tool Suite) - 바로 개발 가능 * 기존 Eclipse에 플러그인을 별도로 추가설치하게 되면 버전 호환성 문제가 발생할 수 있으니 주의 출처 : https://cceeun.tistory.com/61
1. gradle-wrapper.propeties 수정 1 2 distributionUrl=http\://ip번호:port번호/nexus/content/repositories/.gradle/wrapper/dists/gradle-7.1.1-bin/f29rtwfnc96ub43tt7p47zsru/gradle-7.1.1-bin.zip #distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip Colored by Color Scripter cs 2. build.gradle 1 2 3 4 5 repository { maven { url 'ip번호:port번호/nexus/content/repositories/생성한 nexus 경로'..

push 순서 ※ 기존에 .git 폴더가 있으면 숨긴 폴더를 지울 것 1. commit할 것 2. git > Manage Remotes에 Name과 URL 각각 입력 (URL은 정확한 gitlab 주소) 3. master Branch에 push 4. push가 안될 때 참고 1) setting > repository > Protected Branches > Allowed to Push : Developer + Maintainer 지정 2) 이래도 push 안되면 Allowed to Push 밑에 강제 Push 적용 후 다시 Push 해볼 것 - 참고 : https://uxgjs.tistory.com/190

1. camel case 변환하는 플러그인 - 추가후에 Shift + Alt + U 2. 변환기 주소 : https://heavenly-appear.tistory.com/270
보통 생각했을때 단일 파일의 Local History를 클릭해서 복구시킬 생각을 하는데 프로젝트를 선택해서 Local History를 클릭하면 특정 시점 기준으로 여러 개의 파일을 복구할 수 있다. ※ 그래도 만약의 상황을 대비해 매일 commit하는 습관을 들이자. 참고 : https://blog.naver.com/PostView.nhn?blogId=occidere&logNo=222085549220&categoryNo=0&parentCategoryNo=0&viewDate=¤tPage=1&postListTopCurrentPage=1&from=postView
파일에서 문자열 검색 등을 쓸때 한글 입력 안되는 현상 해결방법 1. Help -> Edit Custom VM Options... 2. 맨 마지막 줄에 다음 소스 입력 1 -Dauto.disable.input.methods=false cs