Lombok(http://projectlombok.org)
http://www.ibm.com/developerworks/kr/library/os-lombok/index.html
이거 함 써보자.. 완젼 귀찮아..
@Data
public class Person {
private Long personId;
private String salutation;
private String firstName;
private String middleName;
private String lastName;
private String phoneNumber;
private String email;
private String addressLine1;
private String addressLine2;
private String city;
private String state;
private String country;
private Calendar birthDate;
}
=>
인터뷰 이야기
http://java.dzone.com/interview-lombok
'general java' 카테고리의 다른 글
[Spring Batch] Oracle DB-Job실행중 ORA-08177 발생 (0) | 2011.02.25 |
---|---|
spring framework 소스 및 jar maven 파일 다운받기 (0) | 2011.02.07 |
Referenced file contains errors (0) | 2010.09.10 |
Junit 오해 (0) | 2010.08.20 |
JDK Dynamic Proxy와 CGLIB Proxy에 대한 이해 (0) | 2010.07.15 |