Allocating domain classes from a Spring Roo project

We need to be able to pull domain classes (i.e. entities) from a Spring Roo project in order to reuse them for a Spring project in a batch project .

Is it possible?

Given that we rely on Maven as our build and dependency management tool, and that our Roo project has already been created, can we switch to a multi-module architecture ?

If so, how?

+4
source share
1 answer

I don’t think there is a roo command to convert a single maven module project into a multi-module project.

One option is to use roo to create a separate save module in your current project and manually migrate your entities and configuration.

0
source

Source: https://habr.com/ru/post/1433804/


All Articles