1. Lombok 다운 받기
[ Setting ] → [ Plugin ] → [ Lombok ] → [ Installed ]→ [ OK ]
2. Lombok 적용하기
[ Setting ] → [ Annotaiton Proceessors ]→ [ Enable Annotation Proccesing Check ]→ [ OK ]
Test.class
package Minimalbook.MinimalManagement;
import lombok.Getter;
import lombok.Setter;
@Getter @Setter
public class Test {
private String userName;
}
Main.class
package Minimalbook.MinimalManagement;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MinimalManagementApplication {
public static void main(String[] args) {
Test test = new Test();
test.setUserName("홍길동");
String data = test.getUserName();
System.out.println(data);
SpringApplication.run(MinimalManagementApplication.class, args);
}
}
출력 결과
* Tip
최근 IntelliJ 버전은 Gradle로 실행을 하는 것이 기본 설정되어있습니다.
이렇게 하면 실행속도가 느립니다. 다음과 같이 변경하면 자바로 바로 실행해서 실행속도가 더 빠릅니다.
Setting→ Build, Execution, Deployment → Build Tools → Gradle
Build and run using: Gradle → IntelliJ
IDEA Run tests using: Gradle → IntelliJ IDEA
'1. 웹개발 > 1_2_3 Spring Boot' 카테고리의 다른 글
[Spring Boot] Mybatis Oracle 연동하는 방법 (0) | 2021.03.02 |
---|---|
[Spring Boot] JPA 설정 방법 (0) | 2020.03.08 |
[Spring Boot] initializer 설정 방법 (0) | 2020.03.08 |
[JPA] JPQL의 문법과 파라미터 바인딩 (0) | 2020.02.10 |