I'm using IntelliJ IDEA to develop a Java app.
Let's suppose I have a Multiple File Template that creates a Model Entity, Service and a Controller.
When I use that template, 3 files are created in the same location
. Assume that the Entity name is Car
, then the files would be:
- Car
- CarService
- CarController
Assuming the following structure...
--+ app
+-- model
+-- service
+-- controller
How can I define the location where each files gets created, so the result would be like:
--+ app
+--+ model
+-- Car
+--+ service
+-- CarService
+--+ controller
+-- CarController