Base app with basic configurations, some utility classes and user management.
Run the Application.java
class in the application
module.
- app-base-starter: Template for an app using other modules in App Starter. Fork this module to make changes.
- commons: Some fundamental classes and methods.
- user: Provides user management with roles.
- jar of a module can not be found: Modules dependent on other modules (like
user
) can not be run on its own. Try running the parent project. Ifcommons
project can't be found, compile thecommons
project and try running the parent project. (Running the parent project means runningApplication.java
class in theapplication
module) - Metamodels are missing: The metamodels are generated when the application starts for the first time. Comment out the code that uses metamodels and run the project. Then you will be able to add the metamodels back.