With lombok we can use AllArgumentConstructor
and some other comination.
Intellij also provies generator to construct with fields.
But i dont want to do something like this, specially lots of parameter
public User( User user) {
this.id = user.getId
///////////////
}
Also i dont want to clone the object. I have been looking for some annotation or a way to code least.