I'm new to use Jhipster. I want to create a JDL entity using my existing model classes. Here is my model class.
@Data
public class ResponseJson implements Serializable {
private List<String> names;
}
Normal JDL entity can be created like,
entity ResponseJson{
names String
}
But I need to know how to use List in JDL entities.