Log in to follow, share, and participate in this community.
Article My Experience With Hibernate Envers - Audit trail
My Experience With Hibernate Envers - Audit trailMy web applicaton architecture: Spring 2.5 Hibernate 3.5.3 (Envers bundled) Struts 1.3 Mysql Jboss AS Hibernate Envers : Recently I completed an R&D over audit logging for our Financial Applic...
Article Mapping DB2 pureXML data using Hibernate User Types
Mapping DB2 pureXML data using Hibernate User TypesPureXML is a native XML data management technology that provides hierarchical storage for XML documents, XML query languages and XML indexing capabilities, integrated with the relational capabilities. By using ...
Hibernate Core Migration Guide : 3.6Note: See Hibernate Core Migration Guide: 3.5 for details related to changes in Hibernate text type. This information was missing when 3.5.x and 3.6.0 were released. List of migration concerns as users migrate...
Article How to use Hibernate 3 as JPA provider in JBoss AS7
How to use Hibernate 3 as JPA provider in JBoss AS7if you still use hibernate 3.* as JPA provider in your application and you want to deploy it in Jboss AS7 check this blog entry : http://badr-elhouari.blogspot.com/2011/10/how-to-use-hibernate-3-as-jpa-provide...
Hibernate3 Migration GuidesThis page collects the guides for migrating from one release of Hibernate Core to the next. Migrating from 2.x to 3.0 Migrating from 3.0 to 3.1 Migrating from 3.1 to 3.2 Migrating from 3.2 to 3.3 Migrati...
Article Hibernate annotated package not found - AS7
Hibernate annotated package not found - AS7Hi, I built a WAR file based on hibernate 3.5.3-Final and Spring 3. When I deployed the WAR file to AS7, it shown the followoing WARNings. 00:32:16,626 INFO [org.jboss.as.jpa] (MSC service...
Business Logic for Hibernate / JPAI have observed a number of fundamentally different approaches for implementing business logic. Some advocate a services layer, others advocate adding logic to domain objects. I have not yet read anything entirely con...
Using @Formula with @IdHi, I am using Hibernate to map java object to Paradox DBF files. Not the best use of Hibernate but I need to query the data in the DBF files in a nice easy way and Hibernate is the an...
Who uses HibernateThe information provided below is an acknowledgement from actual developers that Hibernate was used on the projects/applications listed. This information should not be construed as a formal endorsement or backing by t...
Hibernate 4 WebinarCollected notes and links from the Hibernate 4 Webinar given April 20th, 2011 as part of the JBoss Developer Webinar Series Links For sure, check out the migration guide Original design of services (still pret...
generic find by id using IN clausuleRecently I create a new restriction to find entities by PK using the clausule IN. ----- package com.ig.ibest.persistence.hibernate.criterion; import java.util.List; import org.hibernate.Criter...
Hibernate Core Migration Guide : 3.5List of migration concerns as users migrate from 3.3 to 3.5: Hibernate properties configured as type="text" now map to JDBC LONGVARCHAR; in pre-3.5 versions, text properties were mapped to JDBC CLOB. A new Hib...
JBossHibernate3JBoss-Hibernate Integration (Hibernate 3) - Steve Ebersole, JBoss Inc - Ales Justin, JBoss Inc Hibernate support within JBossAS is provided by 3 high-level components: Hibernate MBean - provides deployment, ...
Hibernate CriteriaHi, I would like to select all rows from tables JBPM4_HIST_ACTINST and JBPM4_TASK where JBPM4_HIST_ACTINST.HTASK_ =JBPM4_TASK.DBID_.. i have used criteria and detached criteria ...
Simple Hibernate, Hibernate Annotations questions.-For general users (user developers), is this the forum to post general programming questions? -If it isn't, could I please receive a URL for such in reply? -What is the list of files/jars, being the m...
Article Some explanations on lazy loading (one-to-one)
Some explanations on lazy loading (one-to-one)Some explanations on lazy loading Generality This page try to explain how lazy loading work in Hibernate. one-to-one How to do it Use <one-to-one constrained="true" outer-join="false" class="Foo"...
Hibernate and StandardsList of standards supported by the Hibernate projects Here are the list of supported standards by project Hibernate Core JSR-220 Java Persistence 1.0 in Hibernate Core + Hibernate Annotations + Hibernate EntityManager...
Mapping Oracle XmlType to DocumentThe following two classes allow you to use the Oracle XmlType object in a generic manner and support org.w3c.dom.Document objects that are greater than 4k and works with C3P0 and other database connection pools. Most ...