I've just started using JHipster to jumpstart a new Java/Spring Boot application. The new application needs to replicate entities and services from an existing app. One of the entities has List and Map properties:
List<String> tagCodes = new ArrayList<>()
Map<String, String> targetSystems = new HashMap<>()
The JDL domain language that is part of JHipster understands a number of scalar types, but I don't see a way of representing (and thereby generating code for) properties which are Lists and Maps. Any suggestions?
Asked
Active
Viewed 336 times
1

Terry Tompkins
- 11
- 2
-
These types are not supported in JDL, you must code it manually and the solution may depend on which database you use. – Gaël Marziou May 26 '21 at 07:35