I am new to lombok. I need to create using fields given below except Id. How can i define it?
for example:
@Data
Public Class Test{
private Integer id;
private String name;
private String address;
private address age;
}
I just need to create constructor using fields name,address and age. This might be silly question but any sample code would be appreciated