티스토리 뷰
설치
JAVA 설치
Eclipse 설치
Web application 개발을 위해서는 Enterprise용으로 받는걸 추천합니다.
설정
폰트 사이즈 변경
windows preferences - General - Appearance - Colors and Fonts - Text font - Edit 사이즈업
언어설정
window - preferences - general - content types - java class file 선택 - default encoding에 UTF-8 입력 - Update 클릭
window - preferences - general - workspace - text file encoding - other - UTF-8 - apply
Project import
Spring initialzr 에서 생성한 프로젝트를 import 하기
File - improt - Gradle or Maven Project import
plugin
thymeleaf plugin for eclipse
Help - Install New software - Work with
입력 : http://www.thymeleaf.org/eclipse-plugin-update-site/
모두 체크 후 설치 - eclipse 재시작
Lombok
maven은 pom.xml Gradle은 build.gradle에 lombok 의존성 추가
위 사이트에서 다운로드 후 코드 실행
java -jar lombok.jar
eclipse.exe 경로 설정하고 완료 이후 eclipse 재실행 후 outline에 lombok 이 잘 실행되고 있는지 확인
자동완성
window - preferences - Java - Editor - Content Assist
Disable Insertion triggers except 'Enter' 체크
Enable auto activation 체크
Auto activation triggers for java .qwertyuiopasdfghjklzxcvbnm
Web - HTML Files - Editor - Content Assist
Auto activation delay (ms) 0
Prompt when these characters are inserted <=qwertyuiopasdfghjklzxcvbnm
Javascript
Editor
Content Assist
Enable auto activation 체크
Auto activation triggers for Javascript .qwertyuiopasdfghjklzxcvbnm
ctrl + x 누르면 한줄 지우기 line cut
Click Window -> Preferences
Expand General -> Keys
Set filter text to: cut
Select Cut Line
Set Binding to: Ctrl+x
Select Cut
Set Binding to empty (by pressing Backspapce).
source folder 설정이 안되어있을경우
source folder설정이 안되어있으면 자동완성이 되지않는다.
기본적으로는 source로 사용할만한 폴더는 모두 import 되어있지만 예를들어 querydsl을 사용할 때 target이 되는 폴더의 경우 기본설정이 되어있지않아서 qclass를 import할때 고생할 수 있다.
project -> profperties -> java build path -> source -> add folder
위 경로에서 추가해주도록 하자.
'스프링' 카테고리의 다른 글
타임리프(thymeleaf) 사용하기 (0) | 2020.12.31 |
---|---|
@Valid 를 이용한 검증 및 Advice를 이용한 에러처리 (0) | 2020.06.10 |
JAVA SPRING 인터셉터 (Interceptor) (0) | 2018.07.26 |
JAVA SPRING 트랜잭션(Transaction) (0) | 2018.07.26 |
AOP (Aspect Oriented Programming) (0) | 2018.07.25 |