Can I use only one table for all sleep checks?

I recently found a beautiful library called "hibernate envers", this is a great and easy way to have an audit log, it solved one of my biggest problems when working with the game’s web application. Now I know that Envers uses one table for each object being scanned and wants to know if it is possible to have one table for each thing? (using varchar to put all the data, for example, and put the object model in a separate column)

Thanks in advance.

+6
source share
1 answer

No, It is Immpossible. Currently, only table-based strategies (Default and ValidityAuditStrategy) are available.

See guide: http://docs.jboss.org/hibernate/core/4.1/devguide/en-US/html/ch15.html

+4
source

All Articles