I am trying to call Class getMethod() method with lombok @Data to call getter of model but i got NoSuchMethod exception. Below are my classes:
Model class:
JavaScript
x
@Data
public class Claim {
private String customerName;
}
usage:
JavaScript
Claim.class.get("getCustomerName", String.class)
Exception:
JavaScript
Method threw 'java.lang.NoSuchMethodException' exception.
Advertisement
Answer
You can use below code:
JavaScript
new PropertyDescriptor("customerName", claim.getClass()).getReadMethod().invoke(claim)
for better explaination click here