0
votes
0answers
26 views

jpa query get entity with their all childrens

I have got entity something like that: public class Group{ @Id private int id; @JoinColumn(name = "PARENT_ID", referencedColumnName = "ID") @ManyToOne private Group parentid; ...
0
votes
1answer
63 views

JPA : Differences between modified detached entity and original one

Building a web application using EJB & JPA in JSF I'd like to know how I can get modified fields of an entity. Let's take an easy example : @Entity @Table public class User implements ...
0
votes
0answers
31 views

Common custom domain model for Liferay and web applications (JPA 2, EJB)

Currently I'm facing a design-/packaging-problem concerning EJB, JPA 2, JSF and Liferay. Glassfish is used as application server. I want to develope a domainmodel that can be accessed by all portlets ...
1
vote
1answer
52 views

What is the best pattern for creating an entity if it doesn't exist in JPA

This is related to this question, but very specifically speaks to the problems Pascal points to in his answer. I need to persist an entity if it does not exist (it's primary key is not in the ...
0
votes
0answers
31 views

How to make an i18n-query with fallback language using the CriteriaBuilder?

I have 3 MySQL tables: LANGUAGE -id -name INDUSTRY -id INDUSTRY_DETAIL -id -industry_id -language_id -name They contain the following data: LANGUAGE ...
0
votes
0answers
114 views

EJB 3.x or Spring: for Jersey-JPA-hibernate REST service [closed]

Which is easier when it comes to Jersey-JPA-hibernate applications: Spring or EJB 3.x? You can answer for both experienced users and for inexperienced users of Java. Basically, if time is at a ...
1
vote
1answer
111 views

Entity using entity manager , how good is this design?

I'm evaluating this design that allow entity to have acces to an entity manager . Book Entity: @Entity public class Book implements Serializable { private static final long serialVersionUID = ...
0
votes
1answer
143 views

Architecture choice: ESB and EJB

I am building a new Java EE application (thin client), and here is the application layers: The application presentation will be with JSF2 / Spring webflow and RichFaces 4 The businees layer will be ...
1
vote
2answers
202 views

How can I generate DDL from existing entities with annotations using a maven plugin?

I have maven project and I want to generate DDL from existing entities. How can I do that? Is there any maven plugin that I can generate the DDL? I am using JPA.(open jpa)
0
votes
1answer
803 views

Persisting a OneToMany Entity gives javax.faces.el.EvaluationException: javax.ejb.EJBException

When i try the save method, it gives me an error but when i try inserting the data directly to the database manually, it works fine. Please is there something am not adding or seeing in my managedbean ...
0
votes
2answers
43 views

Saving children and father doesn't see them

I have a Category with many discussions like this: @OneToMany(mappedBy="category", fetch= FetchType.EAGER) List<Discussion> discussions = new ArrayList<Discussion>(); and by saving a ...
1
vote
1answer
607 views

JPA CDI Injecting DAO into an Entity

I'm new to JPA and CDI and I'm trying to create an enterprise application using these frameworks. I get how I can inject into beans and keep everything tidy and stateless. I also get that JPA loads ...
0
votes
1answer
125 views

JPA: is it possible to save a derived class in its own table whereby the referenced field is the MappedSuperclass?

Is it possible to do the following... I have a MappedSuperclass called Action: @MappedSuperclass public class Action extends EntityBase { private static final long serialVersionUID = ...
0
votes
1answer
216 views

Cannot set lastest id inserted in Entity

I have a table User and another Person, a person is an user, right ? So I have to persist the user first then get his id so I can set this id in my person entity. It's pretty simple, but I don't know ...
2
votes
2answers
2k views

Catch PersistenceException or ConstraintViolationException in JBoss7

I'm in the migration process from JBoss6 to JBoss7 and have trouble with my tests. Let's assume a simple entity EJB: @Entity public class MyTest implements Serializable { @Id ...
0
votes
0answers
295 views

EJB 3.1 and JPA2.0

when i deploy EAR file that contains EJB Module, get this Error at deploy time : Exception while preparing the app : Could not initialize class ...
2
votes
1answer
542 views

EcipseLink JPA 2.0 is refresh()/flush() needed?

I have weird behavior of inconsistent data returned from my DB when there are 150+ users connected to our Web-app. My EJBs connect to MySQL through mostly Netbeans 7.0 generated code, customized a ...
0
votes
1answer
412 views

JPA2:i use a JoinColumn as queryparam to create a query and a exception occurred ,why

@JoinColumn(name = "want_uid", referencedColumnName = "id") @ManyToOne private BookUsers wantUid; @JoinColumn(name = "sale_uid", referencedColumnName = "id") @ManyToOne private ...
3
votes
3answers
7k views

Multiple writable mappings exception in EclipseLink

I have these tables: Which my intention is : A user can be a company or a person but each one of them have something in common, as username which is the email and password, so I used the JPA Tools ...
2
votes
1answer
565 views

Cache JPA Entities with EJB

[The real question is marked in bold down. Here follows an as short as possible explaination of my situation] I have the following JPA Entities: @Entity Genre{ private String name; ...
0
votes
1answer
821 views

Spring 3 EJB 3.1 JPA 2

I am looking for a template project a tutorial of how to build Spring 3 + EJB 3.1 + JPA 2 application. Any references or advices warmly appricated. UPDATE#1 ...
0
votes
1answer
203 views

Can't find entities in PersistenceContext after .persist()

I am writing a JavaEE Project and am trying to get some unit tests on the way. The unit testing framework we use is JUnit, alongside Maven and Hudson for building and CI. Among other tests, I'd like ...
1
vote
1answer
315 views

Question about the effect of setFlushMode on an injected, container managed EntityManager

I am using EJB 3.1 and I have a Stateless Session Bean that I am injecting an EntityManager into. One of the EJB's methods calls entityManager.setFlushMode(FlushModeType.COMMIT). Two questions: 1) ...
0
votes
1answer
674 views

EJB 3.1 Transaction, EntityManager

I have an application which processes IQ stanzas via smack (eventbased java library). We now switch from vanilla Tomcat to glassfish 3.1 and i would like to switch to ejb 3.1. @Stateless public class ...
6
votes
2answers
1k views

JPA. How do I subclass existing entity and keep it's ID?

Assume I have two classic non-abstract JPA classes: Person and Student. @Entity @Inheritance(strategy = InheritanceType.JOINED) public class Person { @Id @GeneratedValue(strategy = ...
3
votes
4answers
4k views

JPA2.0: Delete Entity in OneToMany RelationShip

How do I delete an entity in a OneToMany relationship. @Entity @NamedQueries({ @NamedQuery(name="User.findByUserNamePassword", query="select c from User c where c.userName = :userName AND ...
1
vote
2answers
5k views

JPA query language criteriaBuilder

I have built an application using JPA in an EJB container. Here's my code @PersistenceContext(unitName = "damate-pu") private EntityManager em; @Override public Workspace find(String username, ...
1
vote
2answers
3k views

Database table access via JPA Vs. EJB in a Web-Application

I am designing a web-application that access many database tables. I am trying to figure out what is the preferred way to access those tables? Is it via JPA or EJB? Thanks, Nathan