Ask Your Question
1

Is it possible to alter the data type of the rev column in the Hibernate envers revinfo table for customization?

asked 2023-05-15 09:24:38 +0000

woof gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-05-15 09:32:01 +0000

bukephalos gravatar image

Yes, it is possible to alter the data type of the rev column in the Hibernate Envers revinfo table for customization. However, it may require changes to the Hibernate Envers code and configuration.

To change the data type of the rev column, you would need to create a custom implementation of the RevisionEntity interface and configure Hibernate to use it. Within your custom implementation, you can define the rev column to have a different data type.

For example, if you wanted to change the rev column from a numeric type to a UUID type, you could define a custom @RevisionEntity class that includes a UUID property and use a custom Envers listener to generate and set the UUID value for each revision.

Keep in mind that changing the data type of the rev column could have implications for compatibility with other parts of your application that depend on this data type being numeric. So it's important to carefully consider the trade-offs before making this customization.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-15 09:24:38 +0000

Seen: 12 times

Last updated: May 15 '23