You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @rsrini7 thanks for making this codebase open-source, it's been helpful!.
I have an application that is build in Cold-fusion[A JVM language].
It used hibernate under the hood for Entity-management by generating the hb.xml to get around the annotations.
I'm looking if there are any possibilities to use elide in the same fashion to create a read-only API; so far I haven't found anything approachable(P.S I'm not a native JAVA developer).
If possible, can you please share some insights or directions.
The text was updated successfully, but these errors were encountered:
Hi @Nitinrajyadav , elide has elide-spring sub-project and supports only spring boot. If you are looking to support old way of hibernate xml files please check below stack overflow.
Write custom store on top of latest JPAStore and convert the hibernate to elide entities (I customized noopstore & transaction)
Also, till hibernate-5 hbm files are still supported. so writing custom store can achieve this. (version 6 hibernate introducing extensions and this approach will be deprecated)
Hi @rsrini7 thanks for making this codebase open-source, it's been helpful!.
I have an application that is build in Cold-fusion[A JVM language].
It used hibernate under the hood for Entity-management by generating the
hb.xml
to get around the annotations.I'm looking if there are any possibilities to use elide in the same fashion to create a read-only API; so far I haven't found anything approachable(P.S I'm not a native JAVA developer).
If possible, can you please share some insights or directions.
The text was updated successfully, but these errors were encountered: