Hello Friends,
We are using Hibernate Reverse engineering tool to generate pojo's and DAO classes with Annotations (not using hbm).
We need to use jboss cache as a second level cache.
Thus we need in add
@Cache(usage = CacheConcurrencyStrategy.TRANSACTIONAL) or
@Cache(usage = CacheConcurrencyStrategy.READ_ONLY)
in the generated pojo's to support the jboss cache.
Can this be directly generated by the Hibernate tool or any other tool available in jboss tool, we are unable to work manually as the count of the tables in the database that needs to reverse engineered is large (>500)
|