I would like to
a) add a database based security layer to my app
b) Update the resultant User table with some of my own attributes and relationships
c) CRUD Scaffold that table into my app
I did this by running the security scaffolding wizard, which generated the User table, then updated the table with my attributes and relationships. Then re-ran both security and CRUD scaffolding.
The problem is that packagename-generated-dao-context.xml is now in error, although with no error details. The console error when running the app says “Annotation-specified bean name “UsersDAO” conflicts with non-compatible bean defintion of same name and class.
It looks like the problem is that there are now 2 UsersDAOImpl.
Suggested approach anyone?
Thanks