I think you are missing one of the steps of creating a project or jpa. First you need to create a project, and then create jpa after this edit generated by datapase.properties and do an introspection of the database. The hint team will always lead you to the next step.
roo> project com.***.*****
Created ROOT/pom.xml
Created SRC_MAIN_RESOURCES
Created SRC_MAIN_RESOURCES/log4j.properties
Created SPRING_CONFIG_ROOT
Created SPRING_CONFIG_ROOT/applicationContext.xml
roo> hint
Roo requires the installation of a persistence configuration,
for example, JPA.
For JPA, type 'jpa setup' and then hit TAB three times.
We suggest you type 'H' then TAB to complete "HIBERNATE".
After the --provider, press TAB twice for database choices.
For testing purposes, type (or TAB) HYPERSONIC_IN_MEMORY.
If you press TAB again, you'll see there are no more options.
As such, you're ready to press ENTER to execute the command.
Once JPA is installed, type 'hint' and ENTER for the next suggestion.
roo> jpa setup --provider HIBERNATE --database MSSQL
source
share