active questions tagged hibernate - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T09:33:49Zhttp://stackoverflow.com/feeds/tag/hibernatehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1913165/hibernate-mapping-collection-by-column0Hibernate mapping collection by columnasrijaal2009-12-16T08:32:48Z2009-12-16T08:42:56Z
<p>Hi there,</p>
<p>lets take this example</p>
<pre><code><class name="Product">
<id name="serialNumber" column="productSerialNumber"/>
<property name="category" column="category" />
<set name="categories">
<key column="productSerialNumber_FK" not-null="true"/>
<one-to-many class="Part"/>
</set>
</code></pre>
<p></p>
<p>The collection mapping always maps with the id from the class, which holds the foreign key. Is it possible to let hibernate map the collection through an other property/column? So that in this example category is mapped against the class Part?</p>
http://stackoverflow.com/questions/1910124/using-hibernate-jpa-without-relationships-and-avoiding-multiple-db-calls0Using Hibernate/JPA without relationships and avoiding multiple DB callsBenju2009-12-15T20:21:12Z2009-12-16T06:55:02Z
<p>It seems to me that when you use relationships in Hibernate/JPA that using relationships like OneToMany can have a performance boost on reads because only one database call would need to be run to get a parent entity and all children entities. I want to avoid using relationships and just map foreign key columns as normal columns due to the nature of my application.</p>
<p>One problem is that when I actually want to handle relationships I need to do code like this...</p>
<pre><code>ParentEntity pe => someDao.findBySomething("some param"); //db round trip List<ChildEntity
childEntities = someDao.findChildren(pe); //db round trip
</code></pre>
<p>It seems like there is some way to do things a big more manually like I want while avoiding the extra round trips. Any ideas?</p>
http://stackoverflow.com/questions/1905640/unique-constraint-check-based-on-a-parameter-in-the-parent-table0unique constraint check based on a parameter in the parent tableJoshua2009-12-15T06:57:58Z2009-12-16T06:21:35Z
<p>Table User has <code>(userId, scoreType, ...)</code></p>
<pre><code>@Table(name = "User", uniqueConstraints =
@UniqueConstraint(columnNames = userId))
</code></pre>
<p>-- scoreType could be either points or percentage</p>
<p>Table <code>UserScore (id, userId, points, percentage)</code></p>
<p>I would like to provide the flexibility to store either points or percentage based on user.scoreType. So if scoreType for a user is marked as points, we can assume that UserScore table will only have points populated and vice-versa.</p>
<p>a. I am assuming because of the above requirement, I will not be able to add a nullable = false check on either UserScore.points or UserScore.percentage.</p>
<p>b. How should I define the <code>@UniqueConstraint</code> check for the <code>UserScore</code> table. Should it be </p>
<pre><code>@Table(name = "UserScore", uniqueConstraints = {
@UniqueConstraint(columnNames = userId, points),
@UniqueConstraint(columnNames = userId, percentage))
</code></pre>
<p>Would appreciate any other view points on this issue</p>
http://stackoverflow.com/questions/1902997/multiple-database-with-springhibernatejpa1Multiple database with Spring+Hibernate+JPAziftech2009-12-14T19:38:25Z2009-12-15T23:33:48Z
<p>Hi everybody!</p>
<p>I'm trying to configure Spring+Hibernate+JPA for work with two databases (MySQL and MSSQL)</p>
<p>my datasource-context.xml: </p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd"
xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:util="http://www.springframework.org/schema/util">
<!--
Data Source config
-->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close" p:driverClassName="${local.jdbc.driver}" p:url="${local.jdbc.url}"
p:username="${local.jdbc.username}" p:password="${local.jdbc.password}">
</bean>
<bean id="dataSourceRemote" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close" p:driverClassName="${remote.jdbc.driver}"
p:url="${remote.jdbc.url}" p:username="${remote.jdbc.username}"
p:password="${remote.jdbc.password}" />
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"
p:entity-manager-factory-ref="entityManagerFactory" />
<!--
JPA config
-->
<tx:annotation-driven transaction-manager="transactionManager" />
<bean id="persistenceUnitManager"
class="org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager">
<property name="persistenceXmlLocations">
<list value-type="java.lang.String">
<value>classpath*:config/persistence.local.xml</value>
<value>classpath*:config/persistence.remote.xml</value>
</list>
</property>
<property name="dataSources">
<map>
<entry key="localDataSource" value-ref="dataSource" />
<entry key="remoteDataSource" value-ref="dataSourceRemote" />
</map>
</property>
<property name="defaultDataSource" ref="dataSource" />
</bean>
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"
p:showSql="true" p:generateDdl="true">
</bean>
</property>
<property name="persistenceUnitManager" ref="persistenceUnitManager" />
<property name="persistenceUnitName" value="localjpa"/>
</bean>
<bean
class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
</beans>
</code></pre>
<p>each persistence.xml contains one unit, like this:</p>
<pre><code><persistence-unit name="remote" transaction-type="RESOURCE_LOCAL">
<properties>
<property name="hibernate.ejb.naming_strategy" value="org.hibernate.cfg.DefaultNamingStrategy" />
<property name="hibernate.dialect" value="${remote.hibernate.dialect}" />
<property name="hibernate.hbm2ddl.auto" value="${remote.hibernate.hbm2ddl.auto}" />
</properties>
</persistence-unit>
</code></pre>
<p>PersistenceUnitManager cause following exception:</p>
<blockquote>
<p>Cannot resolve reference to bean
'persistenceUnitManager' while setting
bean property
'persistenceUnitManager'; nested
exception is
org.springframework.beans.factory.BeanCreationException:
Error creating bean with name
'persistenceUnitManager' defined in
class path resource
[config/datasource-context.xml]:
Initialization of bean failed; nested
exception is
org.springframework.beans.TypeMismatchException:
Failed to convert property value of
type [java.util.ArrayList] to required
type [java.lang.String] for property
'persistenceXmlLocation'; nested
exception is
java.lang.IllegalArgumentException:
Cannot convert value of type
[java.util.ArrayList] to required type
[java.lang.String] for property
'persistenceXmlLocation': no matching
editors or conversion strategy found</p>
</blockquote>
<p>If left only one persistence.xml without list, every works fine
but I need 2 units...</p>
<p>I also try to find alternative solution for work with two databases in Spring+Hibernate context, so I would appreciate any solution</p>
<p>new error after changing to <strong>persistenceXmlLocations</strong></p>
<p><strong>No single default persistence unit defined in {classpath:config/persistence.local.xml, classpath:config/persistence.remote.xml}</strong></p>
<p>UPDATE:
I add persistenceUnitName, it works, but only with one unit, still need help</p>
<p>UPDATE:
thanks, ChssPly76</p>
<p>I changed config files:
datasource-context.xml</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd"
xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:util="http://www.springframework.org/schema/util">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close" p:driverClassName="${local.jdbc.driver}" p:url="${local.jdbc.url}"
p:username="${local.jdbc.username}" p:password="${local.jdbc.password}">
</bean>
<bean id="dataSourceRemote" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close" p:driverClassName="${remote.jdbc.driver}"
p:url="${remote.jdbc.url}" p:username="${remote.jdbc.username}"
p:password="${remote.jdbc.password}">
</bean>
<bean
class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor">
<property name="defaultPersistenceUnitName" value="pu1" />
</bean>
<bean id="persistenceUnitManager"
class="org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager">
<property name="persistenceXmlLocation" value="${persistence.xml.location}" />
<property name="defaultDataSource" ref="dataSource" /> <!-- problem -->
<property name="dataSources">
<map>
<entry key="local" value-ref="dataSource" />
<entry key="remote" value-ref="dataSourceRemote" />
</map>
</property>
</bean>
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"
p:showSql="true" p:generateDdl="true">
</bean>
</property>
<property name="persistenceUnitManager" ref="persistenceUnitManager" />
<property name="persistenceUnitName" value="pu1" />
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="entityManagerFactoryRemote"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"
p:showSql="true" p:generateDdl="true">
</bean>
</property>
<property name="persistenceUnitManager" ref="persistenceUnitManager" />
<property name="persistenceUnitName" value="pu2" />
<property name="dataSource" ref="dataSourceRemote" />
</bean>
<tx:annotation-driven />
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"
p:entity-manager-factory-ref="entityManagerFactory" />
<bean id="transactionManagerRemote" class="org.springframework.orm.jpa.JpaTransactionManager"
p:entity-manager-factory-ref="entityManagerFactoryRemote" />
</beans>
</code></pre>
<p>persistence.xml</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version="1.0">
<persistence-unit name="pu1" transaction-type="RESOURCE_LOCAL">
<properties>
<property name="hibernate.ejb.naming_strategy" value="org.hibernate.cfg.DefaultNamingStrategy" />
<property name="hibernate.dialect" value="${local.hibernate.dialect}" />
<property name="hibernate.hbm2ddl.auto" value="${local.hibernate.hbm2ddl.auto}" />
</properties>
</persistence-unit>
<persistence-unit name="pu2" transaction-type="RESOURCE_LOCAL">
<properties>
<property name="hibernate.ejb.naming_strategy" value="org.hibernate.cfg.DefaultNamingStrategy" />
<property name="hibernate.dialect" value="${remote.hibernate.dialect}" />
<property name="hibernate.hbm2ddl.auto" value="${remote.hibernate.hbm2ddl.auto}" />
</properties>
</persistence-unit>
</persistence>
</code></pre>
<p>Now it builds two entityManagerFactory, but both are for Microsoft SQL Server
[main] INFO org.hibernate.ejb.Ejb3Configuration - Processing PersistenceUnitInfo [
name: pu1
...]
[main] INFO org.hibernate.cfg.SettingsFactory - RDBMS: Microsoft SQL Server</p>
<p>[main] INFO org.hibernate.ejb.Ejb3Configuration - Processing PersistenceUnitInfo [
name: pu2
...]
[main] INFO org.hibernate.cfg.SettingsFactory - RDBMS: Microsoft SQL Server <strong>(but must MySQL)</strong></p>
<p>I suggest, that use only dataSource, dataSourceRemote (no substitution) is not worked. That's my last problem </p>
http://stackoverflow.com/questions/784664/hibernate-lazy-solution-is-it-right0hibernate lazy solution. Is it right?unknown (google)2009-04-24T05:43:05Z2009-12-15T22:12:57Z
<p>i am using the following approach to solve lazy initialization problem in hibernate. Please tell me whether it will work or not . I have to implement my transcation in my persistance layer compulsary due to some reasons.</p>
<pre><code>public class CourseDAO {
Session session = null;
public CourseDAO() {
session = HibernateUtil.getSessionFactory().getCurrentSession();
}
public Course findByID(int cid) {
Course crc = null;
Transaction tx = null;
try {
tx = session.beginTransaction();
Query q = session.createQuery(
"from Course as course where course.cid = "+cid+" "
);
crc = (Course) q.uniqueResult();
//note that i am not commiting my transcation here.
//Because If i do that i will not be able to do lazy fetch
}
catch (HibernateException e) {
e.printStackTrace();
tx.rollback();
throw new DataAccessLayerException(e);
}
finally {
return crc;
}
}
}
</code></pre>
<p>and in the filter i am using the folling code</p>
<pre><code>session = HibernateUtil.getSessionFactory().getCurrentSession();
if(session.isOpen())
session.getTransaction().commit();
</code></pre>
<p>Is this approach right? Can it can have any problem.</p>
http://stackoverflow.com/questions/1910367/hibernate-collection-handling-basics0Hibernate collection handling basicsunknown (google)2009-12-15T21:00:17Z2009-12-15T21:33:43Z
<p>Hi all,
I"m new to Hibernate. I have 3 tables: Companies, Profiles and Sites. The relation is - one company has many Profiles and Sites (one-to-many). </p>
<pre><code><hibernate-mapping>
<class name="com.bla.dataobject.CompanyData" table="companies">
<id name="companyId" column="company_id">
<generator class="increment"/>
</id>
<property name="name" column="company_name" type="java.lang.String"/>
<property name="description" column="company_information" type="java.lang.String"/>
<set name="sites" table="company_sites" inverse="true" cascade="all-delete-orphan" lazy="false">
<key column="company_id" />
<one-to-many class="com.bla.dataobject.CompanySiteData"/>
</set>
<set name="profiles" table="company_profiles" inverse="true" cascade="all-delete-orphan" lazy="false">
<key column="company_id" />
<one-to-many class="com.bla.dataobject.CompanyProfile"/>
</set>
</class>
<class name="com.bla.dataobject.CompanySiteData" table="company_sites">
<id name="siteId" column="site_id">
<generator class="increment"/>
</id>
<property name="siteProxySettings" column="PROXY_SETTINGS" type="java.lang.String"/>
.................
<property name="siteName" column="SITE_NAME" type="java.lang.String"/>
<many-to-one name="companyData" class="com.bla.dataobject.CompanyData" column="company_id" not-null="true"/>
</class>
<class name="com.bla.dataobject.CompanyProfile" table="company_profiles">
<id name="profileId" column="profile_id">
<generator class="increment"/>
</id>
<property ............./>
<many-to-one name="companyData" class="com.bla.dataobject.CompanyData" column="company_id" not-null="true"/>
</class>
</code></pre>
<p></p>
<p>The insert and delete works just fine, but not the update. My application has Axis2 servlet on one side and the hibernate on the other. I'm suppling the Company object to the presentation layer via the SOAP, then the presentation layer makes changes to the object and requesting to persist the changes (the returned back object has hibernate id inside). If I just making the update session.update(object); the collection are not updated (but only the Company flat parameters), if I'm getting stored company object from db and perform a merge within 2 objects (like delete all collections and insert a received one and then update a original object) works only if all collection items are new (otherwise I get DB unique constraint on a collection name in the table that already exist). So my questions are:
1. Is it right to try updating "parent object" or it is needed to update all 3 objects separately?
2. What is the right way to update collections (add/remove/update)</p>
<p>I'll really appreciate code example (that I didn't find myself) with collections handling.</p>
<p>Thanks a lot</p>
http://stackoverflow.com/questions/1289492/hibernate-timestamp-with-timezone0Hibernate Timestamp with TimezoneImran2009-08-17T18:08:23Z2009-12-15T21:00:04Z
<p>I'm new to Hibernate and am working with an Oracle 10g database. We have columns in our tables that are of type TIMESTAMP WITH TIMEZONE. Hibernate does not seem to support this mapping directly. Is there a standard way to go about this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1910220/what-is-a-natural-identifier0What is a natural identifier?Benju2009-12-15T20:37:28Z2009-12-15T20:47:15Z
<p>When reading through the Hibernate documentation I keep seeing references to the concept of a "natural identifier". Does this just mean the id an entity has due to the nature of the data it holds? IE: A user's name+password+age+something are its identity?</p>
http://stackoverflow.com/questions/1116268/importing-and-normalising-xml-with-hibernate2Importing and normalising XML with HibernateRich Seller2009-07-12T15:43:17Z2009-12-15T20:27:04Z
<p>When importing xml to a DB with Hibernate, is there a way to resolve an attribute consisting of comma-separated values to populate related table(s)?</p>
<p>In this (somewhat obfuscated) example I have an xml file, each row of which represents a Person. The Person has a Hobbies property which contains a comma-separated list of values. The Person-Hobby relationship is many to many. In reality I have gigs of data to process.</p>
<p>When importing each Person to the PEOPLE table, I would like to add each Hobby to the HOBBIES table (ignoring duplicates), then add a mapping to the PEOPLE_HOBBIES table.</p>
<p>I've set up my mapping files with bi-directional associations and Hibernate appears to construct the tables as I'd expect (details below), however I don't see what mechanism I can use for extracting/populating the HOBBIES and PEOPLE_HOBBIES while processing PEOPLE.</p>
<p>All help and/or RTFM references gratefully received.</p>
<p>This is the file I'm processing (people.xml):</p>
<pre><code><People>
<Person Id="1" Name="Dave" Hobbies="drinking, walking"/>
<Person Id="2" Name="Geoff" Hobbies="football, ballet"/>
<Person Id="3" Name="Anne" Hobbies="walking, karate"/>
<Person Id="4" Name="Frank" Hobbies="karate, cross-stitch"/>
</People>
</code></pre>
<p>The Person.hbm.xml is (omitting xml decl):</p>
<pre><code><?xml version="1.0"?><!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="name.seller.rich.hobby">
<class name="Person" node="Person" table="PEOPLE">
<id name="id" node="@Id" column="PEOPLE_ID"/>
<property name="name" node="@Name" column="NAME" type="string"/>
<property name="hobbies" node="@Hobbies" column="HOBBIES" type="string"/>
<set name="hobbiesSet" table="PEOPLE_HOBBIES">
<key column="PEOPLE_ID"/>
<many-to-many column="HOBBY" class="Hobby"/>
</set>
</class>
</hibernate-mapping>
</code></pre>
<p>The Hobby.hbm.xml is:</p>
<pre><code><hibernate-mapping package="name.seller.rich.hobby">
<class name="Hobby" node="Hobby" table="HOBBIES">
<id name="hobby" column="HOBBY" type="string"/>
<set name="people" table="PEOPLE_HOBBIES" inverse="true">
<key column="HOBBY"/>
<many-to-many column="PEOPLE_ID" class="Person"/>
</set>
</class>
</hibernate-mapping>
</code></pre>
<p>This is the Person class, in the setHobbies() method I populate the hobbiesSet with Hobby instances:</p>
<pre><code>package name.seller.rich.hobby;
import java.util.HashSet;
import java.util.Set;
public class Person {
private long id;
private String name;
private String hobbies;
private Set hobbiesSet = new HashSet();
public String getHobbies() {
return hobbies;
}
public Set getHobbiesSet() {
if (hobbiesSet == null) {
hobbiesSet = new HashSet();
}
return hobbiesSet;
}
public long getId() {
return id;
}
public String getName() {
return name;
}
public void setHobbies(final String hobbies) {
this.hobbies = hobbies;
}
public void setHobbiesSet(final Set hobbiesSet) {
this.hobbiesSet = hobbiesSet;
}
public void setId(final long id) {
this.id = id;
}
public void setName(final String name) {
this.name = name;
}
}
</code></pre>
<p>This is the code I'm using to process the file:</p>
<pre><code>package name.seller.rich.hobby;
import java.io.File;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.io.SAXReader;
import org.hibernate.EntityMode;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
public class DataImporter {
public static void main(final String[] args) {
File baseDir = new File("C:\\workspaces\\hobby");
DataImporter importer = new DataImporter();
Configuration config = importer.setupDb(baseDir);
if (config != null) {
importer.importContents(new File(baseDir, "people.xml"), config);
}
}
private void importContents(final File file, final Configuration config) {
SessionFactory sessionFactory = config.buildSessionFactory();
Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
Session dom4jSession = session.getSession(EntityMode.DOM4J);
SAXReader saxReader = new SAXReader();
try {
Document document = saxReader.read(file);
List list = document.selectNodes("//Person");
Iterator iter = list.iterator();
while (iter.hasNext()) {
Object personObj = iter.next();
dom4jSession.save(Person.class.getName(), personObj);
}
session.flush();
tx.commit();
session.close();
} catch (HibernateException e) {
e.printStackTrace();
} catch (DocumentException e) {
e.printStackTrace();
}
}
private Configuration setupDb(final File baseDir) throws HibernateException {
Configuration cfg = new Configuration();
cfg.addFile(new File(baseDir, "name/seller/rich/hobby/Person.hbm.xml"));
cfg.addFile(new File(baseDir, "name/seller/rich/hobby/Hobby.hbm.xml"));
SchemaExport export = new SchemaExport(cfg);
export.setOutputFile("hobbyDB.txt");
export.execute(false, true, false, false);
return cfg;
}
}
</code></pre>
<p>This is the resulting content in the PEOPLE table.</p>
<pre><code>PEOPLE_ID |NAME |HOBBIES
-------------------------------------------------------
1 |Dave |drinking, walking
2 |Geoff |football, ballet
3 |Anne |walking, karate
4 |Frank |karate, cross-stitch
</code></pre>
<p>...and these are the empty HOBBIES and PEOPLE_HOBBIES tables:</p>
<p>HOBBIES:</p>
<pre><code>HOBBY
----------------------
0 rows selected
</code></pre>
<p>PEOPLE_HOBBIES:</p>
<pre><code>PEOPLE_ID |HOBBY
---------------------------------------
0 rows selected
</code></pre>
http://stackoverflow.com/questions/1909483/hibernate-and-padding-on-char-primary-key-column-in-oracle1Hibernate and padding on CHAR primary key column in Oraclejthg2009-12-15T18:41:43Z2009-12-15T19:49:06Z
<p>I'm having a little trouble using Hibernate with a char(6) column in Oracle. Here's the structure of the table:</p>
<pre><code>CREATE TABLE ACCEPTANCE
(
USER_ID char(6) PRIMARY KEY NOT NULL,
ACCEPT_DATE date
);
</code></pre>
<p>For records whose user id has less than 6 characters, I can select them without padding the user id when running queries using SQuirreL. I.E. the following returns a record if there's a record with a user id of "abc".</p>
<pre><code>select * from acceptance where user_id = "abc"
</code></pre>
<p>Unfortunately, when doing the select via Hibernate (JPA), the following returns null:</p>
<pre><code>em.find(Acceptance.class, "abc");
</code></pre>
<p>If I pad the value though, it returns the correct record:</p>
<pre><code>em.find(Acceptance.class, "abc ");
</code></pre>
<p>The module that I'm working on gets the user id unpadded from other parts of the system. Is there a better way to get Hibernate working other than putting in code to adapt the user id to a certain length before giving it to Hibernate? (which could present maintenance issues down the road if the length ever changes)</p>
http://stackoverflow.com/questions/1909315/how-can-you-call-custom-database-functions-with-hibernate1How can you call custom database functions with Hibernate?jsight2009-12-15T18:13:29Z2009-12-15T18:28:21Z
<p>If I were to define some function in the database (perhaps Postgres, or any other database):</p>
<pre><code>create or replace function isValidCookie(ckie);
</code></pre>
<p>I would call it from SQL as:</p>
<pre><code>select * from cookietable c where isValidCookie(c.cookie);
</code></pre>
<p>How can I call a custom function such as this from Hibernate?</p>
http://stackoverflow.com/questions/1906394/building-applications-with-spring-and-hibernate-outside-of-the-web0Building applications with Spring and Hibernate (outside of the web) Learner2009-12-15T10:09:54Z2009-12-15T16:31:38Z
<p>What’s the best approach in building an application that needs to utilize spring and hibernate to pull up POJO and lazily loaded objects? </p>
<p>The application needs access to Hibernate objects from a web project, utilize the domain layer of the web project <strong><em>outside of the web request/response context</em></strong>.<br>
In such a case how can I create a spring session which can pull up the data the way the web project did?<br>
I tried this approach <a href="http://blog.jdevelop.eu/2008/07/06/access-the-spring-applicationcontext-from-everywhere-in-your-application/" rel="nofollow">http://blog.jdevelop.eu/2008/07/06/access-the-spring-applicationcontext-from-everywhere-in-your-application/</a> and ended up with a</p>
<blockquote>
<p>Caused by:
org.hibernate.LazyInitializationException:
could not initialize proxy - no
Session</p>
</blockquote>
http://stackoverflow.com/questions/1906871/how-do-you-turn-on-a-hibernate-filter-for-a-particular-entity-by-default0How do you turn on a hibernate filter for a particular entity by default?Franz See2009-12-15T11:39:31Z2009-12-15T13:44:43Z
<p>Good day,</p>
<p>I currently have an Entity that has a where clause set on it. I want to put that where clause on a filter and have that turned-on by default (so that I won't break any existing functionalities).</p>
<p>I want to turn it into a filter so that I can disable it because I have a use case wherein I need it disabled.</p>
<p>How can I do that in hibernate 3.1.3?</p>
<p>Thanks,
Franz</p>
http://stackoverflow.com/questions/1906239/set-table-character-set-collation-using-hibernate-dialect0Set Table character-set/collation using Hibernate Dialect ?umanga2009-12-15T09:34:06Z2009-12-15T12:03:01Z
<p>I use Hibernate MySQLInnoDB Dialect to generate DDL's.</p>
<p>hibernate.cfg.xml :</p>
<pre><code><property name="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>
</code></pre>
<p>How can I configure the character-set/Collation to 'utf8_general_ci' for the generated table?</p>
http://stackoverflow.com/questions/1901114/search-result-was-due-to-field-in-hibernate-search0Search result was due to field in Hibernate Searchegaga2009-12-14T14:04:56Z2009-12-15T11:43:47Z
<p>I have a Hibernate search that searches from many a field of an object. Is it possible to know which of the fields matched the results for each result object?</p>
http://stackoverflow.com/questions/979809/hibernate-search-problem-could-not-initialize-proxy-no-session0Hibernate search problem - could not initialize proxy - no SessionSrinivasan2009-06-11T07:36:18Z2009-12-15T10:25:43Z
<p>Hi All,</p>
<p>I have the following exception when adding a new record using hibernate. I am also using Hibernate search to create index.</p>
<p>This is my exception.</p>
<pre><code>Jun 11, 2009 1:01:23 PM org.hibernate.LazyInitializationException <init>
</code></pre>
<p>SEVERE: could not initialize proxy - no Session
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:86)
at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:140)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.unproxy(DocumentBuilderIndexedEntity.java:505)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.buildDocumentFields(DocumentBuilderIndexedEntity.java:397)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.buildDocumentFields(DocumentBuilderIndexedEntity.java:456)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.buildDocumentFields(DocumentBuilderIndexedEntity.java:456)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.getDocument(DocumentBuilderIndexedEntity.java:386)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.createAddWork(DocumentBuilderIndexedEntity.java:334)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.addWorkToQueue(DocumentBuilderIndexedEntity.java:302)
at org.hibernate.search.backend.impl.BatchedQueueingProcessor.addWorkToBuilderQueue(BatchedQueueingProcessor.java:153)
at org.hibernate.search.backend.impl.BatchedQueueingProcessor.processWorkByLayer(BatchedQueueingProcessor.java:140)
at org.hibernate.search.backend.impl.BatchedQueueingProcessor.prepareWorks(BatchedQueueingProcessor.java:128)
at org.hibernate.search.backend.impl.PostTransactionWorkQueueSynchronization.beforeCompletion(PostTransactionWorkQueueSynchronization.java:40)
at org.hibernate.transaction.JDBCTransaction.notifyLocalSynchsBeforeTransactionCompletion(JDBCTransaction.java:274)
at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:140)
at com.tis.purchasedetails.dao.PurchaseDetailsDAO.savePurchaseDetails(PurchaseDetailsDAO.java:422)
at com.tis.purchasedetails.presentation.PurchaseItemsAction.execute(PurchaseItemsAction.java:56)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
at java.lang.Thread.run(Unknown Source)
Jun 11, 2009 1:01:23 PM org.hibernate.transaction.JDBCTransaction notifyLocalSynchsBeforeTransactionCompletion
SEVERE: exception calling user Synchronization
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:86)
at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:140)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.unproxy(DocumentBuilderIndexedEntity.java:505)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.buildDocumentFields(DocumentBuilderIndexedEntity.java:397)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.buildDocumentFields(DocumentBuilderIndexedEntity.java:456)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.buildDocumentFields(DocumentBuilderIndexedEntity.java:456)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.getDocument(DocumentBuilderIndexedEntity.java:386)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.createAddWork(DocumentBuilderIndexedEntity.java:334)
at org.hibernate.search.engine.DocumentBuilderIndexedEntity.addWorkToQueue(DocumentBuilderIndexedEntity.java:302)
at org.hibernate.search.backend.impl.BatchedQueueingProcessor.addWorkToBuilderQueue(BatchedQueueingProcessor.java:153)
at org.hibernate.search.backend.impl.BatchedQueueingProcessor.processWorkByLayer(BatchedQueueingProcessor.java:140)
at org.hibernate.search.backend.impl.BatchedQueueingProcessor.prepareWorks(BatchedQueueingProcessor.java:128)
at org.hibernate.search.backend.impl.PostTransactionWorkQueueSynchronization.beforeCompletion(PostTransactionWorkQueueSynchronization.java:40)
at org.hibernate.transaction.JDBCTransaction.notifyLocalSynchsBeforeTransactionCompletion(JDBCTransaction.java:274)
at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:140)
at com.tis.purchasedetails.dao.PurchaseDetailsDAO.savePurchaseDetails(PurchaseDetailsDAO.java:422)
at com.tis.purchasedetails.presentation.PurchaseItemsAction.execute(PurchaseItemsAction.java:56)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
at java.lang.Thread.run(Unknown Source)
Jun 11, 2009 1:01:23 PM org.hibernate.annotations.common.AssertionFailure
SEVERE: an assertion failure occured (this may indicate a bug in Hibernate)
org.hibernate.annotations.common.AssertionFailure: Access a Sealed WorkQueue which has not been sealed
at org.hibernate.search.backend.WorkQueue.getSealedQueue(WorkQueue.java:47)
at org.hibernate.search.backend.impl.BatchedQueueingProcessor.performWorks(BatchedQueueingProcessor.java:170)
at org.hibernate.search.backend.impl.PostTransactionWorkQueueSynchronization.afterCompletion(PostTransactionWorkQueueSynchronization.java:46)
at org.hibernate.transaction.JDBCTransaction.notifyLocalSynchsAfterTransactionCompletion(JDBCTransaction.java:289)
at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:152)
at com.tis.purchasedetails.dao.PurchaseDetailsDAO.savePurchaseDetails(PurchaseDetailsDAO.java:422)
at com.tis.purchasedetails.presentation.PurchaseItemsAction.execute(PurchaseItemsAction.java:56)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
at java.lang.Thread.run(Unknown Source)
Jun 11, 2009 1:01:23 PM org.hibernate.transaction.JDBCTransaction notifyLocalSynchsAfterTransactionCompletion
SEVERE: exception calling user Synchronization
org.hibernate.annotations.common.AssertionFailure: Access a Sealed WorkQueue which has not been sealed
at org.hibernate.search.backend.WorkQueue.getSealedQueue(WorkQueue.java:47)
at org.hibernate.search.backend.impl.BatchedQueueingProcessor.performWorks(BatchedQueueingProcessor.java:170)
at org.hibernate.search.backend.impl.PostTransactionWorkQueueSynchronization.afterCompletion(PostTransactionWorkQueueSynchronization.java:46)
at org.hibernate.transaction.JDBCTransaction.notifyLocalSynchsAfterTransactionCompletion(JDBCTransaction.java:289)
at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:152)
at com.tis.purchasedetails.dao.PurchaseDetailsDAO.savePurchaseDetails(PurchaseDetailsDAO.java:422)
at com.tis.purchasedetails.presentation.PurchaseItemsAction.execute(PurchaseItemsAction.java:56)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
at java.lang.Thread.run(Unknown Source)
- INFO Save PurchaseDetailsVO Ends.
- INFO Getting all PurchaseDetails List Using Hibernate Search Starts...</p>
http://stackoverflow.com/questions/1902256/how-can-i-remove-an-item-from-a-hashmap-in-hibernate1How can I remove an item from a Hashmap in Hibernate ?Jerome C.2009-12-14T17:21:37Z2009-12-15T08:48:55Z
<p>Hello,</p>
<p>I try to delete an item from a hash map with hibernate.</p>
<p>Here is my config on the collection:</p>
<pre><code>@Cache(usage = CacheConcurrencyStrategy.READ_WRITE)
@OneToMany(mappedBy = "game", cascade = CascadeType.ALL, fetch = FetchType.LAZY)
@Where(clause = "charactType='charact'")
@MapKey(name = "shortcut")
@Cascade(org.hibernate.annotations.CascadeType.DELETE_ORPHAN)
public Map<String, Characteristic> getCharacteristics()
{
return characteristics;
}
public void setCharacteristics(Map<String, Characteristic> characteristics)
{
this.characteristics = characteristics;
}
</code></pre>
<p>and here is my remove function on the same object:</p>
<pre><code>@Transactional
public void removeCharacteristic(Characteristic charact)
{
// getCharacteristics().size();
getCharacteristics().remove(charact.getShortcut());
}
</code></pre>
<p>Using the removeCharacteristic do not delete the item in database.
If I uncomment the line to get the size of the list (which force load of the collection), the record is well deleted.</p>
<p>What is the problem ? how can I achieve it without forcing the load of the entire collection ?</p>
<p>thanks</p>
<p>EDIT:
I replace the map by a List, and it runs like a charm (without loading it previously by the size() function)... This is very strange. So my problem is solved with the list, but I'm curious to know why it does not run ?</p>
http://stackoverflow.com/questions/1900788/hibernate-manytoone-save-org-hibernate-transientobjectexception0Hibernate - ManyToOne - Save - org.hibernate.TransientObjectException:Vineyard2009-12-14T12:59:27Z2009-12-15T06:40:59Z
<p>While I try to save top level entity (using JPA), do I need to get the ManyToOne mapped entity freshly from database and set it or cannot I just set Id (of manyToOne mapped entity and save top level entity?
When do not get fresh entity it throws: org.hibernate.TransientObjectException:</p>
<p>Table structures we are using:</p>
<pre><code>DEPARTMENT(DEPARTMENT_ID BIGINT, NAME VARCHAR(128))
EMPLOYEE(EMPLOYEE_ID BIGINT, NAME VARCHAR(128), DEPARTMENT_ID BIGINT)
Entities:
class Department
{
@Id
Long departmentId;
String name;
@Version
Long versionNumber;
}
class Employee
{
@Id
Long employeeId;
String name;
@ManyToOne
Department department;
@Version
Long versionNumber
}
</code></pre>
<p>(both classes have setter and getter methods for all fields and default constructor, constructor which takes primary key as argument)
Now if I want to save Employee with departmentId (say 100), do I need to get the Department record first and then set it in employee?</p>
<p>Cannot I create instance of Department directly (by setting primary key(departmentId)) and set Department instance in Employee and save Employee?
When I do this it is throwing org.hibernate.TransientObjectException.</p>
<p>Any suggestions on best practice to be followed for this?</p>
<p>Thank you in advance</p>
http://stackoverflow.com/questions/1905316/hibernate-configuration-xml2Hibernate Configuration Xmlcedric2009-12-15T05:17:26Z2009-12-15T06:05:05Z
<p>Hi. I am developing a java web application using hibernate as ORM. Is it possible to merge Hibernate.cfg.xml with the applicaion-config.xml?</p>
http://stackoverflow.com/questions/1904949/hibernate-cascade-delete-not-working-when-removing-element-of-recreated-bean0Hibernate cascade delete not working when removing element of recreated beanRavi Wallau2009-12-15T03:11:14Z2009-12-15T03:47:23Z
<p>Supposing these are my parent and my child objects:</p>
<p><strong>Parent:</strong></p>
<pre><code>@Entity
@Table( name = "import_table" )
public class ImportTable {
@Cascade( { CascadeType.ALL, CascadeType.DELETE_ORPHAN } )
@OneToMany(
mappedBy = "table",
fetch = FetchType.EAGER
)
public List<ImportTableColumn> getColumns()
{
return columns;
}
... setter is defined but I don't think it's important for the example
}
</code></pre>
<p><strong>Child:</strong></p>
<pre><code>@Entity
@Table( name = "import_table_column" )
public class ImportTableColumn {
@ManyToOne
@JoinColumn(
name = "import_table_name",
nullable = false
)
public ImportTable getTable()
{
return table;
}
}
</code></pre>
<p>The following pseudo-code will work</p>
<ul>
<li>Create instance of ImportTable, add 2 columns, create a session, save it, close the session;</li>
<li>Read saved instance in a different session, remove one column;</li>
<li>Save it in another session;</li>
<li>Check number of columns and is equal to one.</li>
</ul>
<p>But the following won't work:</p>
<ul>
<li>Create instance of ImportTable, add 2 columns, create a session, save it, close the session;</li>
<li>Read saved instance in a different session;</li>
<li><strong>Recreate saved object manually;</strong></li>
<li>Remove the column;</li>
<li>Save it in another session;</li>
<li>Check number of columns and is equal to one.</li>
</ul>
<p>The reason for this is that we have a Java server/ Flex client application, and we need to load the object, send it to the client, let the client do whatever it has to do, send the object back to the server, and then save it.</p>
<p>I think Hibernate is getting lost when I recreate the object. As far as I know, Hibernate does inject something in the object when it's retrieved from the database. When I recreate the object, I am not copying anything that is not a declared field in the object class. This is the code to recreate the object (for my unit test):</p>
<pre><code>private ImportTable recreate( ImportTable original ) throws IOException
{
final ImportTable copy = new ImportTable();
copy.setDatabaseTableName( original.getDatabaseTableName() );
copy.setDisplayTableName( original.getDisplayTableName() );
if( original.getColumns() != null ) {
copy.setColumns( new ArrayList<ImportTableColumn>( original.getColumns().size() ) );
for( ImportTableColumn originalColumn : original.getColumns() ) {
final ImportTableColumn copyColumn = new ImportTableColumn();
copyColumn.setTable( copy );
copyColumn.setDatabaseColumnName( originalColumn.getDatabaseColumnName() );
copyColumn.setDatatype( originalColumn.getDatatype() );
copyColumn.setExcelColumnName( originalColumn.getExcelColumnName() );
copyColumn.setId( originalColumn.getId() );
copyColumn.setLength( originalColumn.getLength() );
copyColumn.setPk( originalColumn.isPk() );
copyColumn.setRequired( originalColumn.isRequired() );
copyColumn.setPrecision( originalColumn.getPrecision() );
copy.getColumns().add( copyColumn );
}
}
return copy;
}
</code></pre>
<p>I believe hibernate is getting lost when I recreate the object. What I want hibernate to do is to compare what is in the database with what is in the object and save the differences only. Is there any way to do that?</p>
http://stackoverflow.com/questions/1377585/what-is-the-difference-between-deleteorphan-and-delete0What is the difference between DELETE_ORPHAN and DELETE ?Forrest2009-09-04T06:41:22Z2009-12-15T02:47:41Z
<p>Here is source code:</p>
<pre><code>@OneToOne(fetch = FetchType.LAZY)
@Cascade({SAVE_UPDATE, EVICT, DELETE})
@JoinColumn(name = "A_ID", nullable = true)
private A a;
@OneToMany
@Cascade({SAVE_UPDATE, EVICT, DELETE, DELETE_ORPHAN})
@JoinColumn(name = "B_ID")
private List<B> bList;
</code></pre>
<p>What is the difference between DELETE_ORPHAN and DELETE ? </p>
http://stackoverflow.com/questions/1900127/use-tomcat-6-0-as-server-for-java-web-application-cause-javax-persistence-annotat0Use Tomcat 6.0 as server for java web application cause javax.persistence annotations to be messed upMr Cold2009-12-14T10:33:04Z2009-12-15T02:23:29Z
<p>Normally, I use Glass Fish as my testing server for NetBeans.
Recently, I tried to switch to Tomcat 6.0. As soon as I changed the server, compiler no longer understand javax.persistence.Entity. When I checked out the library structure of Tomcat 6.0, there was a file named annotation-api.jar, in which another javax.persistence package resides (!!!). Is it possible to resolve this kind of conflict, which there are two package with different contents share the same name?</p>
http://stackoverflow.com/questions/1900234/maven-java-source-code-generation-for-hibernate2Maven Java Source Code Generation for HibernateAdam2009-12-14T11:01:57Z2009-12-15T02:23:12Z
<p>Hi,</p>
<p>I´m busy converting an existing project from an Ant build to one using Maven. Part of this build includes using the hibernate hbm2java tool to convert a collection of .hbm.xml files into Java. Here's a snippet of the Ant script used to do this:</p>
<blockquote>
<p><code><target name="dbcodegen" depends="cleangen" description="Generate Java source from Hibernate XML">
<hibernatetool destdir="${src.generated}">
<configuration><br>
<fileset dir="${src.config}">
<include name="**/*.hbm.xml"/>
</fileset>
</configuration><br>
<hbm2java jdk5="true"/>
</hibernatetool><br>
</target>
</code></p>
</blockquote>
<p>I've had a look around on the internet and some people seem to do this (I think) using Ant within Maven and others with the Maven plugin. I'd prefer to avoid mixing Ant and Maven. Can anyone suggest a way to do this so that all of the .hbm.xml files are picked up and the code generation takes place as part of the Maven code generation build phase?</p>
<p>Thanks!</p>
<p>Adam.</p>
http://stackoverflow.com/questions/894587/understanding-jasperreports-and-jrbeancollectiondatasource1understanding JasperReports and JRBeanCollectionDataSource...Joshua2009-05-21T19:13:04Z2009-12-15T01:00:01Z
<p>I now have my jasper reports working from my JRBeancollectionDataSource in my code! I am just a bit confused about some things...</p>
<p>When I am designing reports in iReport, I create the fields from a query, which I can do fine and all, since when I am actually running the query I'm using a a code JRBeanCollectionDataSource and so is the hql in the report totally irrelevant at this point?</p>
<p>Also, I have List collections of other persistent objects in the ones I'm fetching for the report and I want a subreport that can list the elements of the list, but I don't understand how to reference those from inside iReport to have it make sense when I'm in the code. Can I just refer from one field to another? ie, a field called properties and the subresport referencing that field directly as properties.value?</p>
<p>Help is so appreciated, I'm just kinda stumped... thank you!
Joshua</p>
http://stackoverflow.com/questions/852371/hibernate-mapping-3-tables1Hibernate: mapping 3 tablesconnectedcreations2009-05-12T11:57:57Z2009-12-14T23:00:09Z
<p>Hi,</p>
<p>I'm trying to map some existing tables with Hibernate.</p>
<p>It's quite simple: we've got categories that have names in multiple languages.</p>
<p>The DDL is as follows:</p>
<pre><code>create table language (
id integer not null auto_increment,
code varchar(2) not null,
unique (code),
primary key(id)
);
create table category (
id integer not null auto_increment,
parent_id integer default null,
ordr integer not null default 99,
primary key (id)
);
create table category_description (
category_id integer not null,
language_id integer not null,
title varchar(255) not null,
constraint foreign key (category_id) references category(id),
constraint foreign key (country_language_id) references country_language(id),
primary key (category_id, country_language_id)
);
</code></pre>
<p>Now I'd like to have a map with Language as it's key and Description (table category_description) as it's value, like this:</p>
<pre><code>private Map<Language, CategoryDescription> descriptions = new HashMap<Language, CategoryDescription>();
</code></pre>
<p>Can anyone provide me with some pointers on this? I've tried the example as given on page 311/312 from the 'Java Persistence with Hibernate' which resembles my problem but I'm just not getting it :(</p>
http://stackoverflow.com/questions/1903150/handle-transaction-on-differents-ears1Handle Transaction on differents EARsrfders2009-12-14T20:03:05Z2009-12-14T22:10:53Z
<p>Hello, what is the best practice to handle multiple EARs and the same transaction, as far as we know we need to apply XA concepts in order transaction works correctly. but apparently in currents project that we've been working on, this is not strictly necessary for creates and updates; however if we try to retrieve any collection from an entity we get an error that say there its not an active transaction or it was closed, but if we update Entity A in Ear A and update Entity B in Ear B it works perfectly when Entity A and Entity B has different datasources, at this point we are so confused about that, because we haven't configure any xa datasource yet. how is the best approach to work with this. transaction are handles by beans and not by the container and datasource are different between EAR A and EAR B</p>
http://stackoverflow.com/questions/1902686/hibernate-hql-query-by-using-like-operator1Hibernate HQL query by using like operatorArthur Ronald F D Garcia2009-12-14T18:40:05Z2009-12-14T19:06:28Z
<p>Hi,</p>
<p>Seu the following mapping</p>
<pre><code>@Entity
public class User {
private Integer id;
@Id;
private Integer getId() {
return this.id;
}
}
</code></pre>
<p>Notice id is an Integer. Now i need this HQL query by using like operator</p>
<pre><code>Query query = sessionFactory.getCurrentSession().createQuery("from User u where u.id like :userId");
</code></pre>
<p>ATT: IT IS <strong>like</strong> operator NOT <strong>=</strong> (equals operator)</p>
<p>Then i use</p>
<pre><code>List<User> userList = query.setParameter("userId", userId + "%").list();
</code></pre>
<p>But does not work because Hibernate complains IllegalArgumentException occured calling getter of User.id</p>
<p>Even when i use </p>
<pre><code>query.setString("userId", userId + "%");
</code></pre>
<p>It does not work</p>
<p>What should i use to pass the query ?</p>
http://stackoverflow.com/questions/1902126/can-i-access-the-c3p0-connection-pool-properties-programmatically0Can I access the c3P0 connection pool properties programmatically?Craig Warren2009-12-14T16:59:41Z2009-12-14T18:23:30Z
<p>Hi,</p>
<p>I am worried that the properties I have set for my C3P0 connection pool are not being used correctly.</p>
<p>Is there a way I can access the values that are set while the application is running and print them out:</p>
<p>Println("Minimum connections"+connectionNumers.minimum);</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1240453/two-approaches-of-task-distribution-in-a-multi-tier-application2Two approaches of task distribution in a multi tier applicationMohsin Hijazee2009-08-06T17:55:44Z2009-12-14T14:06:27Z
<p>I am working on a large web application in Java using Spring and Hibernate as the persistence solution. And as for the methodology, we're on Scrum. My role is that of a Scrum Master. I am also the one managing the business requirements and overall direction of the application.</p>
<p>While dividing the requested features into tasks, we have two conflicting point of
views. I'd want you to evaluate both ways and let me know your experience how you all
are doing out there.</p>
<h2>First approach</h2>
<p>Divide the task into layers of it i.e. the POJO, the DAO, Service layer, Controller,
and the View (JSP, JSTL, EL, JavaScript). Now each person works ONLY a single layer.
For instance, the POJO guy is the one who will always develop the POJOs of each
of the features required right from the User management to inventory, accounts and all.</p>
<p>Similarly, DAO guy would always expose the methods for DAO and would do nothing else.
Same for the service. Then are the guys on the controllers only. They do nothing just
write the controllers. And then are the one working on the view. The do nothing but writing
the JSP for the controllers, the JavaScript interaction stuff.</p>
<h1>Upside</h1>
<ul>
<li>Each one is restricted to a particular kind of skill and area. </li>
</ul>
<h1>Downside</h1>
<ul>
<li>Lots of communication overhead. POJO guy tells DAO one, and that one to the layer above it. </li>
<li>Might not yield coherent design.</li>
<li>Your team member's skill set would be jagged, can never work independently if restricted this way.</li>
</ul>
<h2>Second approach</h2>
<p>You divide the requested feature and distribute them based on funtionality instead of
the logical layers they lie in. For instance, if its about the User management, its a single
developer responsible for desigining the POJO, then exposing the DAO for it, writing service layer
on top of it, then exposing it via controller and rendering its views (Of course not the asthetic design issues).</p>
<h1>Up side</h1>
<ul>
<li>The features designed would be coherent. </li>
<li>One developer is building the whole "column" required to implement a particular feature. </li>
<li>Also, developers would get the understanding of the all of the skills required to roll an enterprise application.</li>
</ul>
<h1>Downside</h1>
<ul>
<li>Only criticism has been that it requires more in depth understanding of the framework.</li>
</ul>
<p>I'd like all of you express your ideas on this and how you're doing it in practice. </p>
http://stackoverflow.com/questions/1898684/in-grails-how-do-i-access-the-hibernate-session-inside-of-a-domain-class-static-m0In Grails how do I access the hibernate session inside of a domain class static method?Andrew2009-12-14T02:49:10Z2009-12-14T14:03:07Z
<p>I've read various articles on the web, but they seem rather scattered on this point. Exactly what do I need to do in my configuration and in my method to get the hibernate session. I'm trying to make some direct sql calls for stored procedures. I have a large code base that I am porting from Ruby with lots of static methods and stored procedure calls. If I need to use the sessionFactory, then how to I get access to it?</p>