I have a Maven project with several submodules inside of it. They are packaged up so that I can reuse the code across several microservices. I can generate my Java classes in the parent project as I would like them to be, however, when I attempt to generate a class in a subdirectory my a package declaration that looks like:
package ${target.javaPackageFromFolder(${SRC})};
In a template will resolve to:
package error.folder.not.started.with.the.given.src.folder.activities;
In the .java
class. This is understandable since my $SRC
is at src/main/java
and not service-core/src/main/java
.
All of my modules are organized the same way, with $SRC
at src/main/java
, if I could just inform Telosys about the existence of these modules, I would be able to generate the code in the right place without needing to move it after generation.
I would just init
Telosys in the service-core
module, but I would also like to support generating DTOs in dto-public
and controllers/tests in my api-public
. Is there any way to support this in Telosys?
Things I've tried:
- Adding a parent
.vm
file that calls$generator.generate
with a different directory. This configuration produces the above result. - Changing the generated directory in the
templates.cfg
to includeservice-core/${SRC}/${ROOT_PKG}/model/
. This configuration also produces the above result.
To generate a multi-modules Maven project I recommend the following approach :
Example:
You can keep the usual values for the standard variables:
You can combine $SRC, $MODULE_XXX and $ROOT_PKG to build the destination directory
Example (project modules initialization):
Other example (in the bundle for "domain" module):
example:
example:
the ending part of the package name is not supposed to change, but if you want you can also use a global variable to define it. Example: