简化getter,setter写法

使用Lombok可以简化成:

@Getter @Setter @NonNull  
  
private String str = "abc";

还有其它用法,详见

文档http://projectlombok.org/features/GetterSetter.html

你可能感兴趣的:(职场,LOMBOK,休闲)