發現一個框架,經過@javabean @get @set等註解,自動添加屬性的get、set方法。html
項目地址:https://projectlombok.org/ java
項目代碼路徑:https://github.com/rzwitserloot/lombokgit
具體屬性包括:github
val
框架
Finally! Hassle-free final local variables.ui
@NonNull
spa
or: How I learned to stop worrying and love the NullPointerException..net
@Cleanup
debug
Automatic resource management: Call your close()
methods safely with no hassle.code
Never write public int getFoo() {return foo;}
again.
No need to start a debugger to see your fields: Just let lombok generate a toString
for you!
Equality made easy: Generates hashCode
and equals
implementations from the fields of your object.
@NoArgsConstructor
, @RequiredArgsConstructor
and @AllArgsConstructor
Constructors made to order: Generates constructors that take no arguments, one argument per final / non-null field, or one argument for every field.
All together now: A shortcut for @ToString
, @EqualsAndHashCode
, @Getter
on all fields, and @Setter
on all non-final fields, and @RequiredArgsConstructor
!
Immutable classes made very easy.
... and Bob's your uncle: No-hassle fancy-pants APIs for object creation!
To boldly throw checked exceptions where no one has thrown them before!
synchronized
done right: Don't expose your locks.
Laziness is a virtue!
Captain's Log, stardate 24435.7: "What was that line again?"
Lombok, made to order: Configure lombok features in one place for your entire project or even your workspace.
Here be dragons: Extra features which aren't quite ready for prime time yet.