Bonjour,
by the way, I do not think that it is possible to reverse engineer a database with underscores in table names :
- the corresponding domain classes will be created and compiled since Java accept undersocres in class names
- the tests will be performed without raising any issue
- everything will be scaffold for the GUI
- you will succesfully deploy it on tomcat and your application page will show up in your browser
- You may fill the form to create a new instance of your object
- But if you click on SAVE --> internal error
If you have a look at the tomcat log, you will fid the well known exception : javax.servlet.jsp.JspTagException: No message found under code ...
The reason is that your class name has been truncated in the message_xx.properties files.
Everything before the underscore is dropped and thus, no message is found in order to display that your record has been successfully saved.
It would be nice that the ROO shell raise an error when the jpa entity is created and not at runtime ...