active questions tagged jpa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T08:32:06Zhttp://stackoverflow.com/feeds/tag/jpahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1932258/persisting-a-new-but-identical-entity-with-jpa-reporting-duplicate-entry0Persisting a new but identical entity with JPA reporting duplicate entryJon Eisenstein2009-12-19T07:29:13Z2009-12-19T08:28:28Z
<p>I have a JPA project connected to a MySQL database where my entity object is mapped to a table with a constraint on 2 columns. That is:</p>
<pre><code>@Entity
@Table(name = "my_entity")
class MyEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Basic(optional = false)
@Column(name = "id")
private Integer id;
@Basic(optional = false)
@Column(name = "myField1")
private String myField1;
@Basic(optional = false)
@Column(name = "myField2")
private int myField2;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "myEntity")
private Set<OtherEntity> otherEntitySet;
}
</code></pre>
<p>In the database, the my_entity table has a unique constraint on (myField1, myField2). The issue is that if I remove an existing entity with EntityManager.remove(entity) and then add a new one with EntityManager.persist(entity), the database throws an error about a duplicate row.</p>
<p>For example:</p>
<pre><code>entityManager.getTransaction().begin();
MyEntity entity1 = new MyEntity();
entity1.setMyField1("Foo");
entity1.setMyField2(500);
entityManager.persist(entity1);
entityManager.getTransaction().commit();
entityManager.getTransaction().begin();
entityManager.remove(entity1);
MyEntity entity2 = new MyEntity();
entity2.setMyField1("Foo");
entity2.setMyField2(500);
entityManager.persist(entity2);
entityManager.getTransaction().commit();
</code></pre>
<p>This gives me a MySQLIntegrityConstraintViolationException complaining about this being a duplicate entry. I imagine it's because it's trying to add the new entry before removing the old one. Is there any way to maintain that order? Or, is there a way to use JPA to prevent this situation? It's not exactly a common use case, but I'm concerned about a user who tries to delete an entity to get rid of all the associated data and start over, and then recreates the easier fields, then finding that the data was never removed.</p>
http://stackoverflow.com/questions/1919235/in-spring-what-code-is-used-to-inject-the-value-for-the-persistencecontext-anno0In spring, what code is used to inject the value for the @PersistenceContext annotated variables?HappyEngineer2009-12-17T03:15:58Z2009-12-19T06:51:31Z
<p>Using a ClassPathXmlApplicationContext object I want to get the same EntityManager that is being used by other parts of the app which get it injected via:</p>
<pre><code>@PersistenceContext(unitName="accessControlDb") private EntityManager em;
</code></pre>
<p>Using ctx.getBean("access-emf") I can get the EntityManagerFactory which is defined in the applicationContext.xml. Using that I can create a new EntityManager, but I can't get the existing EntityManager used by the rest of the app.</p>
<p>I just can't figure out what code is executed to inject the value for the @PersistenceContext annotation.</p>
<pre><code><bean id="jotm" class="org.springframework.transaction.jta.JotmFactoryBean"/>
<bean id="innerNgsdpDataSource" class="org.enhydra.jdbc.standard.StandardXADataSource">
<property name="driverName" value="${ngsdp.jdbc.driver}"/>
<property name="url" value="${ngsdp.jdbc.url}"/>
<property name="user" value="${ngsdp.jdbc.username}"/>
<property name="password" value="${ngsdp.jdbc.password}"/>
<property name="transactionManager" ref="jotm"/>
</bean>
<bean id="ngsdpDataSource" class="org.enhydra.jdbc.pool.StandardXAPoolDataSource">
<property name="transactionManager" ref="jotm"/>
<property name="dataSource" ref="innerNgsdpDataSource"/>
<property name="user" value="${ngsdp.jdbc.username}"/>
<property name="password" value="${ngsdp.jdbc.password}"/>
<property name="maxSize" value="4"/>
<property name="checkLevelObject" value="2"/>
<property name="jdbcTestStmt" value="select 1 from dual"/>
</bean>
<bean id="myEmf" name="moservices" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="ngsdpDataSource"/>
<property name="persistenceXmlLocation" value="WEB-INF/moservices-persistence.xml" />
<property name="jpaVendorAdapter" ref="hibernate_jpa_vendor_adapter" />
<property name="jpaPropertyMap" ref="jpa_property_map"/>
<property name="jpaDialect" ref="hibernate_jpa_dialect"/>
</bean>
</code></pre>
http://stackoverflow.com/questions/1930966/jpa-merge-is-causing-duplicates0JPA Merge Is Causing DuplicatesChris2009-12-18T22:11:01Z2009-12-18T22:42:02Z
<p>I have the entity classes below. When a user first signs up, only the username and password are supplied, so the list of accounts (think profiles) is empty. Later, when they add an account, the user object is updated in the client, passed to the server, and then entityManager.merge(user) is called. When the user is merged, the account is added 6 times to the database and the address supplied is added three times. I'm not sure why. I would like the account to be added once and only one address to be added. Any ideas on what may be happening?</p>
<pre><code>@Entity
public class User implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="id")
private int id;
@OneToMany(cascade=CascadeType.ALL)
@JoinTable(name="user_accounts")
private List<Account> accounts;
//...getters and setters ...
}
@Entity
public class Account implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="id")
private long id;
@ManyToOne(cascade=CascadeType.ALL)
@JoinColumn(name="address")
private Address address;
//...getters and setters...
}
@Entity
public class Address implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="id")
private int id;
@Column(name="street")
private String street;
@Column(name="city")
private String city;
@Column(name="state")
private String state;
@Column(name="zip")
private String zip;
//...getters and setters...
}
</code></pre>
http://stackoverflow.com/questions/1816780/how-to-reuse-fieldlength-in-form-validation-and-ddl1How to reuse fieldlength in form, validation and ddl ? Dominik2009-11-29T21:05:39Z2009-12-18T17:20:13Z
<p>I'm working on an Spring application with lots of input forms. I'd like to reuse the field length in the UI-form, validation and JPA annotations. Is there an elegant way to solve this. My solution at the moment is, to use constants to declare the length:</p>
<pre><code>public class Person
{
public static final int FIRSTNAME_LENGTH = 25;
@Column(length=FIRSTNAME_LENGTH)
private String firstName;
...
}
</code></pre>
<p>and then reuse the constant in the Validator and the Jsp</p>
<pre><code>...
<form:input path="firstName"
maxlength="<%= Integer.toString(Person.FIRSTNAME_LENGTH) %>"/>
...
</code></pre>
<p>which is pretty verbose. </p>
<p>Is there any more elegant solution to this problem?</p>
http://stackoverflow.com/questions/1929445/to-equals-and-hashcode-or-not-on-entity-classes-that-is-the-question0To equals and hashcode or not on entity classes, that is the question.Benju2009-12-18T16:52:12Z2009-12-18T16:57:23Z
<p>I have been trying to reason about the best way to handle whether it is generally good practice to implement hashcode and equals on entities (I mean entity in the general sense but in most cases it will be a JPA entity).</p>
<p>In Chapter 24 of the Hibernate manual <a href="http://docs.jboss.org/hibernate/core/3.3/reference/en/html/best-practices.html" rel="nofollow">http://docs.jboss.org/hibernate/core/3.3/reference/en/html/best-practices.html</a> it says this...</p>
<blockquote>
<p>Identify natural keys for all
entities, and map them using
. Implement equals() and
hashCode() to compare the properties
that make up the natural key.</p>
</blockquote>
<p>It makes sense to have .equals and .hashcode include only these natural keys but what if you have more than one instance of the same entity (same natural id thus same hashcode)? It seems like this practice could have subtle implications elsewhere in your application. Has anybody tried this before on a large scale? </p>
http://stackoverflow.com/questions/1928191/what-is-the-correct-way-of-overriding-hashcode-and-equals-methods-of-persis1What is the correct way of overriding hashCode () and equals () methods of persistent entity?Roman2009-12-18T13:27:13Z2009-12-18T16:36:39Z
<p>I have a simple class Role:</p>
<pre><code>@Entity
@Table (name = "ROLE")
public class Role implements Serializable {
@Id
@GeneratedValue
private Integer id;
@Column
private String roleName;
public Role () { }
public Role (String roleName) {
this.roleName = roleName;
}
public void setId (Integer id) {
this.id = id;
}
public Integer getId () {
return id;
}
public void setRoleName (String roleName) {
this.roleName = roleName;
}
public String getRoleName () {
return roleName;
}
}
</code></pre>
<p>Now I want to override its methods equals and hashCode. My first suggestion is:</p>
<pre><code>public boolean equals (Object obj) {
if (obj instanceof Role) {
return ((Role)obj).getRoleName ().equals (roleName);
}
return false;
}
public int hashCode () {
return id;
}
</code></pre>
<p>But when I create new Role object, its id is null. That's why I have some problem with hashCode method implementation. Now I can simply return <code>roleName.hashCode ()</code> but what if roleName is not necessary field? I'm almost sure that it's not so difficult to make up more complicated example which can't be solved by returning hashCode of one of its fields. </p>
<p>So I'd like to see some links to related discussions or to hear your experience of solving this problem. Thanks!</p>
http://stackoverflow.com/questions/1917200/database-diff-tool3Database Diff ToolShadow_x992009-12-16T19:51:06Z2009-12-18T15:21:35Z
<p>As a Java Developper using JPA/Hibernate, I am looking for a will help diff a database that has been generated by Hibernate with a production database.</p>
<p>I've already looked at LiquiBase's abilities <a href="http://www.liquibase.org/" rel="nofollow">LiquiBase</a> which is quite nice... Unfortunlately it is plagued by some weird bugs:</p>
<ul>
<li>Re-Create Foreign Keys for no reason</li>
<li>Re-Create Indexes for no reason</li>
</ul>
<p>I'm not entirely sure that it's Liquibase's fault as much as the JDBC Driver Implementation that are not consistent with the specification. I would be probably be plagued by the same issues if I even tried to roll out my own.</p>
<p>I am looking for a non Java-based solution that would support:</p>
<ul>
<li>MySQL </li>
<li>PostgreSQL </li>
<li>Oracle </li>
<li>DB2</li>
</ul>
http://stackoverflow.com/questions/808530/spring-jpa-hibernate-on-glassfish-classvisitor-problem0Spring + JPA (Hibernate) on Glassfish --> ClassVisitor problemKen Kousen2009-04-30T19:02:02Z2009-12-18T09:40:00Z
<p>I'm trying to write a simple web app with Spring 2.5 (core + MVC) and JPA (using Hibernate for the persistence mechanism). Every time I deploy, I'm getting a "Class not found exception" that points to ClassVisitor.</p>
<p>This is a known version problem with the asm library. In a stand-alone app, I can make sure that the proper asm version is first in the classpath, but when I deploy them to the server, I'm still getting problem.</p>
<p>Is there some way I can guarantee that the server uses the proper jar file?</p>
<p>I'm tearing my hair out over this, and I don't have the hair to lose. :)</p>
<p>Thanks for any help,</p>
<p>Ken Kousen
ken.kousen@kousenit.com</p>
http://stackoverflow.com/questions/1902997/multiple-database-with-springhibernatejpa1Multiple database with Spring+Hibernate+JPAziftech2009-12-14T19:38:25Z2009-12-18T09:33:53Z
<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/1924777/jpa-spring-hibernate-dao-list-problem0JPA Spring Hibernate Dao List problemPeter Delaney2009-12-17T21:40:00Z2009-12-17T21:45:24Z
<p>I am using JPA/Spring/Hibernate as my persistence mechanism for my application. Currently I am running into unit test problems where when I ask for some objects I get the right amount returned from the DAO that correspond to the number of rows in the database, but they are all of the exact same instance. Here is the findByName() method that is causing me the problem.</p>
<pre>
public class ActionDefinitionDaoJpa extends JpaDaoSupport implements IActionDefinitionDao {
public List findByName( String name ) {
return getJpaTemplate().find("from ActionDefinition where listenerName = ?", name );
}
}
</pre>
<p>This method works without any errors. I am testing this at the DAO layer and not the Service layer so I have no transactions introduced any where in the test. I don't know if it is transactional or not. If I take the SQL that the JPA produces and execute it I get the right resultset from the database.</p>
<p>Here is my spring configuration file and persistence.xml file</p>
<pre><code><beans>
<!-- My Dao in Test -->
<bean id="actionDefinitionDao" class="com.putnam.compliance.cme.dao.actions.jpa.ActionDefinitionDaoJpa">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceXmlLocation" value="classpath:persistence.xml" />
<property name="persistenceUnitName" value="cmeJpa" />
<property name="dataSource" ref="dataSource"/>
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="database" value="ORACLE"/>
<property name="showSql" value="true"/>
<property name="generateDdl" value="false"/>
<property name="databasePlatform" value="org.hibernate.dialect.OracleDialect"/>
</bean>
</property>
<property name="jpaPropertyMap">
<map>
<entry key="hibernate.transaction.flush_before_completion" value="true"/>
<entry key="hibernate.transaction.auto_close_session" value="true"/>
<entry key="hibernate.current_session_context_class" value="jta"/>
<entry key="hibernate.connection.release_mode" value="auto"/>
</map>
</property>
<property name="jpaDialect">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaDialect"/>
</property>
</bean>
<!--
DataSource to talk to Database Note: these values are pulled in by the .properties files
-->
<bean id="localDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource" >
<property name="driverClassName" value="${dataSource.driverClassName}" />
<property name="url" value="${dataSource.url}" />
<property name="username" value="${dataSource.username}" />
<property name="password" value="${dataSource.password}" />
</bean>
<alias name="localDataSource" alias="dataSource"></alias>
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory"/>
<property name="dataSource" ref="dataSource"/>
</bean>
</bean>
</code></pre>
<p>Here is my persistence.xml file</p>
<pre><code><persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0">
<!--
<persistence-unit name="cmeJpa" transaction-type="JTA">
-->
<persistence-unit name="cmeJpa" transaction-type="RESOURCE_LOCAL">
<class>com.putnam.compliance.cme.model.actions.ActionSequence</class>
<class>com.putnam.compliance.cme.model.actions.ActionDefinition</class>
<class>com.putnam.compliance.cme.model.actions.ActionXmlDefinition</class>
<exclude-unlisted-classes/>
</persistence-unit>
</persistence>
</code></pre>
<p>Here is my ActionDefinition JPA bean</p>
<pre><code>
@Entity
@Table(name="PUT_M_DEFINITION")
public class ActionDefinition implements java.io.Serializable {
public ActionDefinition() {
}
@Id
@Column(name="LISTENER_NAME")
public String getListenerName() {
return listenerName;
}
public void setListenerName( String n ) {
listenerName = n;
}
@Column(name="CONTEXT")
public String getContext() {
return context;
}
public void setContext( String n ) {
context = n;
}
@Column(name="DATA")
public String getData() {
return data;
}
public void setData( String n ) {
data = n;
}
@Column(name="NOTES")
public String getNotes() {
return notes;
}
public void setNotes( String n ) {
notes = n;
}
@Column(name="EMAIL_ID")
public String getEmailId() {
return emailId;
}
public void setEmailId( String n ) {
emailId = n;
}
...
...
}
</code></pre>
<p>I've played with many different combinations like change from <b>LocalContainerEntityManagerFactoryBean</b> to a <b>LocalEntityManagerFactoryBean</b>.</p>
<p>I got runtime errors about persistenceXmlLocation property not present.</p>
<p>I also tried changing the <b>transaction-type</b> in persistance.xml file to "JTA" that did not seem to work it actually broke it.</p>
<p>At this point I am floundering and not sure where my problem is. Again I run this in JUnit so it is not inside any container and may be when moved to Production.</p>
<p>Any pointers would be appreciated; thanks</p>
http://stackoverflow.com/questions/1924221/get-fresh-data-for-a-list-of-entities1Get fresh data for a list of entitiesGerman2009-12-17T20:04:35Z2009-12-17T20:34:37Z
<p>We're using jpa with Toplink as an implementation and came up with a problem about refreshing lists of entities.</p>
<p>Basically this is the scenario:</p>
<pre><code>private List<Entity> findAll()
{
final String sql = "SELECT e from " + anEntityClass.getSimpleName() + " e";
final Query query = itsManager.createQuery(sql);
List<Entity> result = query.getResultList();
return result;
}
</code></pre>
<p>But if we modify the database by external means, a second call to findAll() method will return outdated information because it reuses the info stored in cache.</p>
<p>One solution to this problem is to specify </p>
<pre><code>query.setHint("toplink.refresh", "True");
</code></pre>
<p>So we always get refreshed data. But then we are depending on Toplink and we would face a problem if we need to change providers.</p>
<p>I know that there's an entityManager.refesh() method but I've only seen it in combination with entitytManager.find() to get only one entity.</p>
<p>Is there any standard way to get fresh data for a list of entities?</p>
http://stackoverflow.com/questions/1923853/backup-a-database-using-jpa0Backup a database using JPAjavydreamercsw2009-12-17T18:59:59Z2009-12-17T20:05:33Z
<p>I'm working on a database backup engine using JPA. Everything is working fine but I'm having issues figuring this issue. I know is related to how I defined the Entities.</p>
<p>First here's a brief on how the system works:</p>
<ol>
<li>Create a Derby database instance in a selected directory</li>
<li>Connect to the source database and scrol thru the tables fetching all entities and copying them over to the destination database (the Derby instance)</li>
<li>Zip the destination database and store the zip.</li>
</ol>
<p>To restore basically unzip the database and make the backup the source and the live db the target (after deleting all entities in the new target database)</p>
<p>Everything is working fine until I noticed I was leaving out a table from the backup. When I added it it's complaining with the following:</p>
<pre><code> javax.persistence.RollbackException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.0.v20091127-r5931): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`xinco`.`xinco_core_ace`, CONSTRAINT `FK_xinco_core_ace_xinco_core_user_id` FOREIGN KEY (`xinco_core_user_id`) REFERENCES `xinco_core_user` (`id`))
Error Code: 1451
Call: DELETE FROM xinco_core_user WHERE (id = ?)
bind => [1]
</code></pre>
<p>Here's the Entity I'm copying when I get the error:</p>
<pre><code> package com.bluecubs.xinco.core.server.persistence;
import com.bluecubs.xinco.core.server.AuditedEntityListener;
import com.bluecubs.xinco.core.server.XincoAuditedObject;
import java.io.Serializable;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EntityListeners;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
import javax.persistence.CascadeType;
/**
*
* @author Javier A. Ortiz Bultrón <javier.ortiz.78@gmail.com>
*/
@Entity
@Table(name = "xinco_core_ace")
@EntityListeners(AuditedEntityListener.class)
@NamedQueries({
@NamedQuery(name = "XincoCoreAce.findAll",
query = "SELECT x FROM XincoCoreAce x"),
@NamedQuery(name = "XincoCoreAce.findById",
query = "SELECT x FROM XincoCoreAce x WHERE x.id = :id"),
@NamedQuery(name = "XincoCoreAce.findByReadPermission",
query = "SELECT x FROM XincoCoreAce x WHERE x.readPermission = :readPermission"),
@NamedQuery(name = "XincoCoreAce.findByWritePermission",
query = "SELECT x FROM XincoCoreAce x WHERE x.writePermission = :writePermission"),
@NamedQuery(name = "XincoCoreAce.findByExecutePermission",
query = "SELECT x FROM XincoCoreAce x WHERE x.executePermission = :executePermission"),
@NamedQuery(name = "XincoCoreAce.findByAdminPermission",
query = "SELECT x FROM XincoCoreAce x WHERE x.adminPermission = :adminPermission")})
public class XincoCoreAce extends XincoAuditedObject implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Basic(optional = false)
@Column(name = "id", nullable = false)
private Integer id;
@Basic(optional = false)
@Column(name = "read_permission", nullable = false)
private boolean readPermission;
@Basic(optional = false)
@Column(name = "write_permission", nullable = false)
private boolean writePermission;
@Basic(optional = false)
@Column(name = "execute_permission", nullable = false)
private boolean executePermission;
@Basic(optional = false)
@Column(name = "admin_permission", nullable = false)
private boolean adminPermission;
@JoinColumn(name = "xinco_core_data_id", referencedColumnName = "id", nullable = true)
@ManyToOne(fetch = FetchType.LAZY)
private XincoCoreData xincoCoreDataId;
@JoinColumn(name = "xinco_core_group_id", referencedColumnName = "id", nullable = true)
@ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.PERSIST)
private XincoCoreGroup xincoCoreGroupId;
@JoinColumn(name = "xinco_core_node_id", referencedColumnName = "id", nullable = true)
@ManyToOne(fetch = FetchType.LAZY)
private XincoCoreNode xincoCoreNodeId;
@JoinColumn(name = "xinco_core_user_id", referencedColumnName = "id", nullable = true)
@ManyToOne(fetch = FetchType.LAZY)
private XincoCoreUser xincoCoreUserId;
public XincoCoreAce() {
}
public XincoCoreAce(Integer id) {
this.id = id;
}
public XincoCoreAce(Integer id, boolean readPermission, boolean writePermission, boolean executePermission, boolean adminPermission) {
this.id = id;
this.readPermission = readPermission;
this.writePermission = writePermission;
this.executePermission = executePermission;
this.adminPermission = adminPermission;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public boolean getReadPermission() {
return readPermission;
}
public void setReadPermission(boolean readPermission) {
this.readPermission = readPermission;
}
public boolean getWritePermission() {
return writePermission;
}
public void setWritePermission(boolean writePermission) {
this.writePermission = writePermission;
}
public boolean getExecutePermission() {
return executePermission;
}
public void setExecutePermission(boolean executePermission) {
this.executePermission = executePermission;
}
public boolean getAdminPermission() {
return adminPermission;
}
public void setAdminPermission(boolean adminPermission) {
this.adminPermission = adminPermission;
}
public XincoCoreData getXincoCoreDataId() {
return xincoCoreDataId;
}
public void setXincoCoreDataId(XincoCoreData xincoCoreDataId) {
this.xincoCoreDataId = xincoCoreDataId;
}
public XincoCoreGroup getXincoCoreGroupId() {
return xincoCoreGroupId;
}
public void setXincoCoreGroupId(XincoCoreGroup xincoCoreGroupId) {
this.xincoCoreGroupId = xincoCoreGroupId;
}
public XincoCoreNode getXincoCoreNodeId() {
return xincoCoreNodeId;
}
public void setXincoCoreNodeId(XincoCoreNode xincoCoreNodeId) {
this.xincoCoreNodeId = xincoCoreNodeId;
}
public XincoCoreUser getXincoCoreUserId() {
return xincoCoreUserId;
}
public void setXincoCoreUserId(XincoCoreUser xincoCoreUserId) {
this.xincoCoreUserId = xincoCoreUserId;
}
@Override
public int hashCode() {
int hash = 0;
hash += (id != null ? id.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof XincoCoreAce)) {
return false;
}
XincoCoreAce other = (XincoCoreAce) object;
if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {
return false;
}
return true;
}
@Override
public String toString() {
return "com.bluecubs.xinco.core.server.persistence.XincoCoreAce[id=" + id + "]";
}
}
</code></pre>
<p>I tried changing the cascade type for the xincoCoreDataId but it didn't work. I'll keep working on it but any feedback is welcomed.</p>
<p>Edit:
Seems I copied the wrong exception. Sorry.</p>
<p>Here's the actual exception</p>
<pre><code> javax.persistence.RollbackException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.0.v20091127-r5931): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLIntegrityConstraintViolationException: The statement was aborted because it would have caused a duplicate key value in a unique or primary key constraint or unique index identified by 'SQL091217135308520' defined on 'XINCO_CORE_GROUP'.
Error Code: 20000
Call: INSERT INTO xinco_core_group (id, designation, status_number) VALUES (?, ?, ?)
bind => [1, general.group.admin, 1]
</code></pre>
http://stackoverflow.com/questions/1923580/jpa-composite-key-all-fields-are-notnull-and-pri0JPA Composite key (all fields are notNull and PRI)Castanho2009-12-17T18:10:50Z2009-12-17T18:43:43Z
<p>Hi all, I saw that exist more then one way to map a <strong>Composite Key</strong> with JPA.</p>
<p>But in my case is kind of different:</p>
<p>I have a table with only 2 column:</p>
<pre>
mysql> desc mytable;
+--------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------+-------------+------+-----+---------+-------+
| name | varchar(80) | NO | PRI | | |
| tag | varchar(80) | NO | PRI | | |
+--------+-------------+------+-----+---------+-------+
</pre>
<p>My point is: Do I need to create a new (<em>primary key class</em>) class just to map my composite key?</p>
<p>I'm trying to find the easiest way to do it.</p>
<p>Some one can help-me?</p>
<p>Thanks in advance!</p>
<p><hr></p>
<p><strong>I'm trying with this approach: <a href="http://www.java.net/print/236710" rel="nofollow">http://www.java.net/print/236710</a></strong></p>
<p><hr></p>
http://stackoverflow.com/questions/1923212/ordering-by-a-column-thats-not-in-the-group-by-or-enapsulated-in-an-aggregate0Ordering by a Column that's not in the Group By or Enapsulated in an AggregateHenning2009-12-17T17:12:27Z2009-12-17T18:03:12Z
<p>I have a problem getting this JPA query to work on MS SQL Server 2008.</p>
<p>The background is as follows: Users create jobs for clients, of which there are many. I am displaying a list of his most recently used clients to the user to make the selection easier. </p>
<pre><code>SELECT DISTINCT c FROM Client c
JOIN c.jobs j
WHERE j.user = ?1
ORDER BY j.created DESC
</code></pre>
<p>The query works just fine - using MySQL. MS SQL Server (2008) complains that I cannot sort by <code>j.created</code> because it is not part of the select list. This is the error message: </p>
<blockquote>
<p>ORDER BY items must appear in the
select list if SELECT DISTINCT is
specified.</p>
</blockquote>
<p>I can't seem to find an elegant workaround for this limitation. Does anyone have an idea?</p>
http://stackoverflow.com/questions/706313/how-do-you-remove-rows-after-changing-the-item-in-a-jpa-onetoone-relationship1How do you remove rows after changing the item in a JPA OneToOne relationship?Sheldon Young2009-04-01T16:18:55Z2009-12-17T17:44:43Z
<p>How do you get a OneToOne item to automatically remove with JPA/Hibernate? I would expect simply setting the OneToOne item to be null in the class that contains would be smart enough to allow Hibernate to delete it.</p>
<p>Given a simple object, simplified:</p>
<pre><code>@Entity
public class Container {
private Item item;
@OneToOne(cascade=CascadeType.ALL)
public Item getItem() { return item; }
public void setItem(Item newItem) { item = newItem; }
}
</code></pre>
<p>When an Item is set on Container an Container is persisted with merge a row gets inserted.</p>
<pre><code>Container container = new Container();
container.setItem(new Item());
container = entityManager.merge(container);
// Row count is 1
</code></pre>
<p>But when the item is set null, or to another item, the old object still exists in the table.</p>
<pre><code>container.setItem(null);
container = entityManager.merge(container);
// Row count is STILL 1, leaving orphaned rows.
</code></pre>
<p>So, how do I remove these OneToOne orphans?</p>
http://stackoverflow.com/questions/1901637/jpa-remove-constraints-at-run-time0JPA remove constraints at run timejavydreamercsw2009-12-14T15:40:56Z2009-12-17T15:09:20Z
<p>I'm deleting entities from a table with a one to many relationship to the same entity (representing node hierarchy). If I make the xincoCoreNodeId relationship a cascade all it works but I don't want that in the real application. I don't want removing a leaf removing its parent. Is there a way to modify this relationship at run time or disable the constraints so I can delete the whole table contents without getting constraint complains?</p>
<pre><code> package com.bluecubs.xinco.core.server.persistence;
import com.bluecubs.xinco.core.server.AuditedEntityListener;
import com.bluecubs.xinco.core.server.XincoAuditedObject;
import java.io.Serializable;
import java.util.List;
import javax.persistence.Basic;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EntityListeners;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import org.eclipse.persistence.annotations.PrivateOwned;
/**
*
* @author Javier A. Ortiz Bultrón <javier.ortiz.78@gmail.com>
*/
@Entity
@Table(name = "xinco_core_node")
@EntityListeners(AuditedEntityListener.class)
@NamedQueries({
@NamedQuery(name = "XincoCoreNode.findAll", query = "SELECT x FROM XincoCoreNode x"),
@NamedQuery(name = "XincoCoreNode.findById", query = "SELECT x FROM XincoCoreNode x WHERE x.id = :id"),
@NamedQuery(name = "XincoCoreNode.findByDesignation", query = "SELECT x FROM XincoCoreNode x WHERE x.designation = :designation"),
@NamedQuery(name = "XincoCoreNode.findByStatusNumber", query = "SELECT x FROM XincoCoreNode x WHERE x.statusNumber = :statusNumber")})
public class XincoCoreNode extends XincoAuditedObject implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Basic(optional = false)
@Column(name = "id", nullable = false)
private Integer id;
@Basic(optional = false)
@Column(name = "designation", nullable = false, length = 255)
private String designation;
@Basic(optional = false)
@Column(name = "status_number", nullable = false)
private int statusNumber;
@JoinColumn(name = "xinco_core_language_id", referencedColumnName = "id", nullable = false)
@ManyToOne(optional = false, fetch = FetchType.LAZY)
private XincoCoreLanguage xincoCoreLanguageId;
@OneToMany(cascade = CascadeType.PERSIST, mappedBy = "xincoCoreNodeId", fetch = FetchType.LAZY)
private List<XincoCoreNode> xincoCoreNodeList;
@JoinColumn(name = "xinco_core_node_id", referencedColumnName = "id")
@PrivateOwned
@ManyToOne(fetch = FetchType.LAZY)
private XincoCoreNode xincoCoreNodeId;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "xincoCoreNodeId", fetch = FetchType.LAZY)
private List<XincoCoreAce> xincoCoreAceList;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "xincoCoreNodeId", fetch = FetchType.LAZY)
private List<XincoCoreData> xincoCoreDataList;
public XincoCoreNode() {
}
public XincoCoreNode(Integer id) {
this.id = id;
}
public XincoCoreNode(Integer id, String designation, int statusNumber) {
this.id = id;
this.designation = designation;
this.statusNumber = statusNumber;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getDesignation() {
return designation;
}
public void setDesignation(String designation) {
this.designation = designation;
}
public int getStatusNumber() {
return statusNumber;
}
public void setStatusNumber(int statusNumber) {
this.statusNumber = statusNumber;
}
public XincoCoreLanguage getXincoCoreLanguageId() {
return xincoCoreLanguageId;
}
public void setXincoCoreLanguageId(XincoCoreLanguage xincoCoreLanguageId) {
this.xincoCoreLanguageId = xincoCoreLanguageId;
}
public List<XincoCoreNode> getXincoCoreNodeList() {
return xincoCoreNodeList;
}
public void setXincoCoreNodeList(List<XincoCoreNode> xincoCoreNodeList) {
this.xincoCoreNodeList = xincoCoreNodeList;
}
public XincoCoreNode getXincoCoreNodeId() {
return xincoCoreNodeId;
}
public void setXincoCoreNodeId(XincoCoreNode xincoCoreNodeId) {
this.xincoCoreNodeId = xincoCoreNodeId;
}
public List<XincoCoreAce> getXincoCoreAceList() {
return xincoCoreAceList;
}
public void setXincoCoreAceList(List<XincoCoreAce> xincoCoreAceList) {
this.xincoCoreAceList = xincoCoreAceList;
}
public List<XincoCoreData> getXincoCoreDataList() {
return xincoCoreDataList;
}
public void setXincoCoreDataList(List<XincoCoreData> xincoCoreDataList) {
this.xincoCoreDataList = xincoCoreDataList;
}
@Override
public int hashCode() {
int hash = 0;
hash += (id != null ? id.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof XincoCoreNode)) {
return false;
}
XincoCoreNode other = (XincoCoreNode) object;
if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {
return false;
}
return true;
}
@Override
public String toString() {
return "com.bluecubs.xinco.core.server.persistence.XincoCoreNode[id=" + id + "]";
}
}
</code></pre>
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-17T00:44:47Z
<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/1657124/whats-the-difference-between-pessimisticread-and-pessimisticwrite0whats the difference between PESSIMISTIC_READ and PESSIMISTIC_WRITE?paka2009-11-01T13:02:01Z2009-12-16T23:00:02Z
<p>I have read the article <a href="http://blogs.sun.com/enterprisetechtips/entry/locking%5Fand%5Fconcurrency%5Fin%5Fjava" rel="nofollow">Locking and Concurrency in Java Persistence 2.0</a>, and run the sample application. But i still cant realize the difference between PESSIMISTIC_READ and PESSIMISTIC_WRITE. I tried to modify the code, and where the code using PESSIMISTIC_READ and PESSIMISTIC_WRITE will have the same result that the sql will invoked with "for update".</p>
http://stackoverflow.com/questions/671820/requiresnew-annotated-method-is-executed-without-a-transaction0REQUIRES_NEW annotated method is executed without a transaction?Kimble2009-03-22T23:46:11Z2009-12-16T14:52:05Z
<p>I have a stateless bean resposible for persisting entities to a database. This stateless bean is called by a message bean's onMessage method. The wired thing is that on the first message everything works fine, but on the next message the method responsible for persisting is invoked outside a transaction, even though the method is annotated with REQUIRES_NEW. </p>
<pre><code>@TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
public StateChange persistChange(long deviceId, ...) {
...
StateChange change = new StateChange(...);
em.persist(change);
em.refresh(change); // To provoke the error
return change;
}
</code></pre>
<p>Calling refresh triggers the following exception:</p>
<blockquote>
<p>Caused by: javax.persistence.TransactionRequiredException: no transaction is in progress</p>
</blockquote>
<p>Any ideas? I'm fairly new to JTA so I might have missed something important? </p>
http://stackoverflow.com/questions/1910215/how-to-make-a-property-nullable-in-jpa-gae-j1How to make a property nullable in JPA - GAE/J?Tahir Akram2009-12-15T20:36:37Z2009-12-16T12:55:11Z
<p>I have a entity class User. I want to add some more properties but to keep them nullable. I want to know the annotation used for this in JPA. I am using JPA in Google App Engine.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1910220/what-is-a-natural-identifier0What is a natural identifier?Benju2009-12-15T20:37:28Z2009-12-16T11:54:33Z
<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/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/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/1133179/why-wont-jpa-delete-owned-entities-when-the-owner-entity-loses-the-reference-to0Why won't JPA delete owned entities when the owner entity loses the reference to them?Nick2009-07-15T18:43:13Z2009-12-15T15:52:02Z
<p>Hi!</p>
<p>I've got a JPA entity "Request", that owns a List of Answers (also JPA entities). Here's how it's defined in Request.java:</p>
<pre><code>@OneToMany(cascade= CascadeType.ALL, mappedBy="request")
private List<Answer> answerList;
</code></pre>
<p>And in Answer.java:</p>
<pre><code>@JoinColumn(name = "request", referencedColumnName="id")
@ManyToOne(optional = false)
private Request request;
</code></pre>
<p>In the course of program execution, the Request's List of Answers may have Answers added or removed from it, or the actual List object may be replaced. My problem is thus: when I merge a Request to the database, the Answer objects that <em>used</em> to be in the List are kept in the database -- that is, Answer objects that the Request no longer holds a reference to (indirectly, via a List) are not deleted.</p>
<p>This is not the behaviour I desire, as if I merge a Request to the database, and then fetch it again, its Answers List may not be the same. Am I making some programming mistake? Is there an annotaion or setting that will ensure that the Answers in the database are exactly the Answers in the Request's List?</p>
<p>A solution is to keep references to the original Answers List and then use the EntityManager to remove each old Answer before merging the Request, but it seems like there should be a cleaner way.</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1901138/process-files-in-java-ee0Process files in Java EEPeter Lindqvist2009-12-14T14:10:26Z2009-12-15T11:26:38Z
<p>I have a system that is supposed to take large files containing documents and process these to split up the individual documents and create document objects to be persisted with JPA (or at least it is assumed in this question).</p>
<p>The files are in the range of 1 document to 100 000 in each file. The files come in various types</p>
<ul>
<li>Compressed
<ul>
<li>Zip</li>
<li>Tar + gzip</li>
<li>Gzip</li>
</ul></li>
<li>Plain-text</li>
<li>XML</li>
<li>PDF</li>
</ul>
<p>Now the biggest concern is that the specification forbids accessing local files. At least in the way that i'm used to.</p>
<p>I could save the files to a database table, but is that really a good way to do it? The files can be up to 2GB <strike>and accessing the files from the database would require that you download the whole file, either into memory or onto disk.</strike></p>
<p>My first thought was to separate this process from the application server and use a more traditional approach, but i've been thinking about how to keep it on the application server for future purposes such as clustering etc. </p>
<p>My questions are basically</p>
<ol>
<li>Is there a standard way or a recommended way of dealing with this in Java EE? </li>
<li>Is there an application server specific way around this?</li>
<li>Can you justify breaking this process out of the application server? And how would <em>you</em> design the communications channel between these two separate systems?</li>
</ol>
http://stackoverflow.com/questions/1905687/xapool-connection-timed-out0xapool connection timed outHappyEngineer2009-12-15T07:11:20Z2009-12-15T07:11:20Z
<p>I'm using xapool (org.enhydra.jdbc.pool.StandardXAPoolDataSource) with Spring and JPA and I'm getting connection timed out errors. I found the "checkLevelObject" setting, but it doesn't seem to have helped. Should that have fixed it? Are there other setting that I could use to test the connections and have them replaced without impacting the application?</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/879385/how-can-i-get-information-out-of-a-junction-table-using-jpa-eclipselink0How can I get information out of a junction table using JPA/EclipseLink?Benny2009-05-18T19:34:12Z2009-12-14T16:00:19Z
<p>I have the following many-to-many mapping:</p>
<p><code><pre>
public class Student implements
{
@Id
@GeneratedValue
private Integer xID;</p>
<pre><code>@ManyToMany
@JoinTable(name = "x_y",
joinColumns = { @JoinColumn(name = "xID")},
inverseJoinColumns={@JoinColumn(name="yID")})
private Set<Cat> cats;
</code></pre>
<p>}</p>
<p>public class Cat implements
{
@Id
@GeneratedValue
private Integer yID;</p>
<pre><code>@ManyToMany
@JoinTable(name = "x_y",
joinColumns = { @JoinColumn(name = "yID")},
inverseJoinColumns={@JoinColumn(name="xID")})
private Set<Student> students;
</code></pre>
<p>}
</pre></code></p>
<p>Please ignore the object and property names, they are ficticious and irrelevant. This compiles and works fine. I can also do this:</p>
<p><code><pre>
Entitymanager em = emf.createEntityManager();</p>
<p>em.getTransaction().begin();
Student s = new Student();
Student s2 = new Student();
Cat c = new Cat();
em.persist(s);
em.persist(s2);
em.persist(c);
s.getCats().add(c);
c.getStudents().add(s2);
em.getTransaction().commit();
</pre></code></p>
<p>My problem comes when I get the objects back from the database.</p>
<p><code><pre>
em.getTransaction().begin();
Student s = em.find(Student.class, 2);
Cat c = em.find(Cat.class, 3);</p>
<p>if( c != null )
System.out.println(c.getYID() + ": " + c.getStudents());
if( s != null )
System.out.println(s.getXID() + ": " + s.getCats());
em.getTransaction().commit();
</pre></code></p>
<p>The printout is:</p>
<p>3: {IndirectSet: not instantiated}</p>
<p>2: {IndirectSet: not instantiated}</p>
<p>This may very well be normal behavior. It just seems to me that when I get the objects back from the table, their Sets relating to the other objects should be populated. What I mean to say is, since the junction table looks like this:</p>
<p>X | Y</p>
<p>2 | 3</p>
<p>1 | 3</p>
<p>em.find(Cat.class,3) should return a Cat object with a set of {1,2} for getStudents() and em.find(Student.class,2) should return a Student object with a set of {3} for getCats().</p>
<p>Is there any way to make this possible?</p>
<p>Thanks,
B.J.</p>
http://stackoverflow.com/questions/1869024/jpa-inheritance-using-postgresql0JPA inheritance using PostgreSQLemanemos2009-12-08T18:44:53Z2009-12-14T12:19:58Z
<p>I'm using Seam and trying to organize inheritence among several entities using JPA.
A Person entity should be a parent, User and Partner entities ought to be children.
The chosen strategy of inheritance is SINGLE_TABLE.</p>
<p>The Person entity is as follows:</p>
<pre><code>@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(
name="persontype",
discriminatorType=DiscriminatorType.STRING
)
@Table(name="people")
public abstract class Person implements Serializable {
private static final long serialVersionUID = 2876596753307415768L;
@Id
@SequenceGenerator(name = "people_id_gen", sequenceName="people_id_seq", initialValue=0, allocationSize=1)
@GeneratedValue(generator="people_id_gen",strategy=GenerationType.SEQUENCE)
private Long id;
private Integer version;
public void setId(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
@Version
private void setVersion(Integer version) {
this.version = version;
}
public Integer getVersion() {
return version;
}
}
</code></pre>
<p>The User code:</p>
<pre><code>@Entity
@DiscriminatorValue("User")
public class User extends Person implements Serializable
{
private String foo;
@NotNull
public String getFoo() {
return foo;
}
public void setFoo(String foo) {
this.foo = foo;
}
}
</code></pre>
<p>And the Partner lines: </p>
<pre><code>@Entity
@DiscriminatorValue("Partner")
public class Partner extends Person implements Serializable
{
private String bar;
@NotNull
public void setBar(String bar) {
this.bar = bar;
}
public String getBar() {
return bar;
}
}
</code></pre>
<p>When I try to select or delete some users or partners, it looks OK.
Creating users triggers no problems.
However, an attempt to create a Partner instance gives me a number of exceptions. The stack starts with the following words:</p>
<blockquote>
<p>21:27:27,361 INFO [STDOUT] Hibernate:</p>
<pre><code>select
nextval ('people_id_seq') 21:27:27,365 SEVERE [application]
</code></pre>
<p>java.lang.IllegalStateException: Could
not get property value</p>
</blockquote>
<p>I also noticed that adding any fields to User entity provokes errors. The same situation's about the parent entitty.</p>
<p>PostgreSQL 8.4.1 and postgresql-8.4-701.jdbc4.jar are used.</p>
<p>Can anybody explain what's going on?</p>
<p><strong>UPD:</strong></p>
<p>Here's the complete stack trace:</p>
<pre><code>16:30:29,748 INFO [STDOUT] Hibernate:
select
partner0_.id as id123_,
partner0_.version as version123_,
partner0_.bar as bar123_
from
people partner0_
where
partner0_.persontype='Partner'
16:31:05,182 INFO [STDOUT] Hibernate:
select
nextval ('people_id_seq')
16:31:05,186 SEVERE [application] java.lang.IllegalStateException: Could not get property value
javax.faces.el.EvaluationException: java.lang.IllegalStateException: Could not get property value
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83)
at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:178)
at org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:290)
at org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:368)
at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:495)
at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:56)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.HotDeployFilter.doFilter(HotDeployFilter.java:53)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:433)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:598)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.IllegalStateException: Could not get property value
at org.hibernate.validator.ClassValidator.getMemberValue(ClassValidator.java:539)
at org.hibernate.validator.ClassValidator.getInvalidValues(ClassValidator.java:384)
at org.hibernate.validator.ClassValidator.getInvalidValues(ClassValidator.java:352)
at org.hibernate.validator.event.ValidateEventListener.validate(ValidateEventListener.java:139)
at org.hibernate.validator.event.ValidateEventListener.onPreInsert(ValidateEventListener.java:172)
at org.hibernate.action.EntityInsertAction.preInsert(EntityInsertAction.java:178)
at org.hibernate.action.EntityInsertAction.execute(EntityInsertAction.java:72)
at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:279)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:263)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:167)
at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:321)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:50)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1027)
at org.hibernate.ejb.AbstractEntityManagerImpl.flush(AbstractEntityManagerImpl.java:304)
at org.jboss.seam.persistence.EntityManagerProxy.flush(EntityManagerProxy.java:92)
at org.jboss.seam.framework.EntityHome.persist(EntityHome.java:85)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.seam.util.Reflections.invoke(Reflections.java:22)
at org.jboss.seam.intercept.RootInvocationContext.proceed(RootInvocationContext.java:32)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:56)
at org.jboss.seam.transaction.RollbackInterceptor.aroundInvoke(RollbackInterceptor.java:28)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.core.BijectionInterceptor.aroundInvoke(BijectionInterceptor.java:77)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.core.ConversationInterceptor.aroundInvoke(ConversationInterceptor.java:65)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.transaction.TransactionInterceptor$1.work(TransactionInterceptor.java:97)
at org.jboss.seam.util.Work.workInTransaction(Work.java:47)
at org.jboss.seam.transaction.TransactionInterceptor.aroundInvoke(TransactionInterceptor.java:91)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.core.MethodContextInterceptor.aroundInvoke(MethodContextInterceptor.java:44)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.intercept.RootInterceptor.invoke(RootInterceptor.java:107)
at org.jboss.seam.intercept.JavaBeanInterceptor.interceptInvocation(JavaBeanInterceptor.java:185)
at org.jboss.seam.intercept.JavaBeanInterceptor.invoke(JavaBeanInterceptor.java:103)
at org.emanemos.mailbox.session.PartnerHome_$$_javassist_seam_3.persist(PartnerHome_$$_javassist_seam_3.java)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.el.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:335)
at org.jboss.el.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:348)
at org.jboss.el.parser.AstPropertySuffix.invoke(AstPropertySuffix.java:58)
at org.jboss.el.parser.AstValue.invoke(AstValue.java:96)
at org.jboss.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at com.sun.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 53 more
Caused by: java.lang.IllegalArgumentException: Invoking setbar with wrong parameters
at org.hibernate.annotations.common.reflection.java.JavaXMethod.invoke(JavaXMethod.java:39)
at org.hibernate.validator.ClassValidator.getMemberValue(ClassValidator.java:536)
... 102 more
Caused by: java.lang.IllegalArgumentException: wrong number of arguments
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.hibernate.annotations.common.reflection.java.JavaXMethod.invoke(JavaXMethod.java:33)
... 103 more
16:31:05,190 WARNING [lifecycle] #{partnerHome.persist}: java.lang.IllegalStateException: Could not get property value
javax.faces.FacesException: #{partnerHome.persist}: java.lang.IllegalStateException: Could not get property value
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:118)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83)
at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:178)
at org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:290)
at org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:368)
at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:495)
at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:56)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.HotDeployFilter.doFilter(HotDeployFilter.java:53)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:433)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:598)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: javax.faces.el.EvaluationException: java.lang.IllegalStateException: Could not get property value
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
... 52 more
Caused by: java.lang.IllegalStateException: Could not get property value
at org.hibernate.validator.ClassValidator.getMemberValue(ClassValidator.java:539)
at org.hibernate.validator.ClassValidator.getInvalidValues(ClassValidator.java:384)
at org.hibernate.validator.ClassValidator.getInvalidValues(ClassValidator.java:352)
at org.hibernate.validator.event.ValidateEventListener.validate(ValidateEventListener.java:139)
at org.hibernate.validator.event.ValidateEventListener.onPreInsert(ValidateEventListener.java:172)
at org.hibernate.action.EntityInsertAction.preInsert(EntityInsertAction.java:178)
at org.hibernate.action.EntityInsertAction.execute(EntityInsertAction.java:72)
at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:279)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:263)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:167)
at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:321)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:50)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1027)
at org.hibernate.ejb.AbstractEntityManagerImpl.flush(AbstractEntityManagerImpl.java:304)
at org.jboss.seam.persistence.EntityManagerProxy.flush(EntityManagerProxy.java:92)
at org.jboss.seam.framework.EntityHome.persist(EntityHome.java:85)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.seam.util.Reflections.invoke(Reflections.java:22)
at org.jboss.seam.intercept.RootInvocationContext.proceed(RootInvocationContext.java:32)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:56)
at org.jboss.seam.transaction.RollbackInterceptor.aroundInvoke(RollbackInterceptor.java:28)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.core.BijectionInterceptor.aroundInvoke(BijectionInterceptor.java:77)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.core.ConversationInterceptor.aroundInvoke(ConversationInterceptor.java:65)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.transaction.TransactionInterceptor$1.work(TransactionInterceptor.java:97)
at org.jboss.seam.util.Work.workInTransaction(Work.java:47)
at org.jboss.seam.transaction.TransactionInterceptor.aroundInvoke(TransactionInterceptor.java:91)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.core.MethodContextInterceptor.aroundInvoke(MethodContextInterceptor.java:44)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.intercept.RootInterceptor.invoke(RootInterceptor.java:107)
at org.jboss.seam.intercept.JavaBeanInterceptor.interceptInvocation(JavaBeanInterceptor.java:185)
at org.jboss.seam.intercept.JavaBeanInterceptor.invoke(JavaBeanInterceptor.java:103)
at org.emanemos.mailbox.session.PartnerHome_$$_javassist_seam_3.persist(PartnerHome_$$_javassist_seam_3.java)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.el.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:335)
at org.jboss.el.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:348)
at org.jboss.el.parser.AstPropertySuffix.invoke(AstPropertySuffix.java:58)
at org.jboss.el.parser.AstValue.invoke(AstValue.java:96)
at org.jboss.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at com.sun.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 53 more
Caused by: java.lang.IllegalArgumentException: Invoking setbar with wrong parameters
at org.hibernate.annotations.common.reflection.java.JavaXMethod.invoke(JavaXMethod.java:39)
at org.hibernate.validator.ClassValidator.getMemberValue(ClassValidator.java:536)
... 102 more
Caused by: java.lang.IllegalArgumentException: wrong number of arguments
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.hibernate.annotations.common.reflection.java.JavaXMethod.invoke(JavaXMethod.java:33)
... 103 more
16:31:05,192 SEVERE [lifecycle] JSF1054: (Phase ID: INVOKE_APPLICATION 5, View ID: /partner.xhtml) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@1fff2bd]
</code></pre>