0
votes
1answer
27 views

unable to update entity

this is the method public String changePassword(int id){ FacesContext context = FacesContext.getCurrentInstance(); try{ utx.begin(); Wuser ...
0
votes
1answer
27 views

Use of Cascade in ManyToOne relation

Is it appropriate to use Cascade in both sides of a ManyToOne association in Hibernate Entities? To make my question more concrete, let 's assume that someone has the following related Entities: ...
0
votes
0answers
42 views

JPA one entity 3 tables

I have three tables each having the same coloumns. One of them has the original measured data, the other ones have the data aggregated to minutes and hours. When loading the data in JPA I want to have ...
0
votes
1answer
56 views

primefaces ,eclipselink, data table after insert doesnt show the @joincolumn

Data table after i inserting and there is a blank field that doesnt show the entity since i can't post image here is the url after insert after i reload / refresh the page the empty field is back to ...
1
vote
0answers
37 views

JPA entities PrePersist and PreRemove callbacks, are they fired only once per life time of an application?

The JPA 2.0 specification talks about the PrePersist and PreRemove callbacks on page 95: The PrePersist and PreRemove callback methods are invoked for a given entity before the respective ...
0
votes
1answer
97 views
+50

EntityManager remove() call not updating database

I have a basic Java project setup using JPA. I have classes which are annotated properly and can insert data into my PostgreSQL database without any trouble. My question... and I may find that I ...
0
votes
1answer
33 views

JPA: data access in a bidirectional m:n relationship

I want to model a sample m:n relationship between the entities 'order' and 'items' The corresponding mapping sections are: Order.java: ... @Id @GeneratedValue(strategy = GenerationType.IDENTITY) ...
0
votes
1answer
44 views

JPA: Modelling m:n relationship & join-table values

having a m:n real-world relationship between some entities, e.g. user <---> group Now I want to model this relationship and store additional information based on it, e.g. a field "quality". I ...
0
votes
1answer
67 views

JPA: Result list - Cast Object[] to tuple

simple question, but I don't see my error in reasoning. Having a named query with selected members as result instead of the entire row/entity. Now I want to access the member fields with the ...
0
votes
1answer
28 views

Error on defining association with Hibernate

I am trying to create two associated tables in a PostgreSQL database using Hibernate. The Entities I have written are: @Entity @Table(name="EMPLOYEE") public class Employee implements Serializable { ...
0
votes
3answers
47 views

JPA cannot delete entities with a onotomany relation and a cascatype all

I am trying to delete an entity but when I use the entity manager i do not have errors but te data is still in the database, I am using cascade all, independently of this, I am deleting its parent ...
0
votes
1answer
36 views

Remote Acces To Jpa Entity

So, I'm currently working on system that consists of Java Web app and C# client app. Web app has Java Web Service, which has method that returns entity object of Program class: ...
0
votes
1answer
95 views

EntityManager persist() method does not insert record to database => SEVERE: javax.persistence.TransactionRequiredException

I have problem with using EntityManager persist() method. I am using JSF2.0, glassfish 3, JPA and hibernate, i am not using spring. I try to add events in an events table with the method persist, but ...
-1
votes
0answers
21 views

Two entity fields are generated for one column in JPA

In the dynamic web project, I added JPA facet implementing eclipselink. When I generated entities from Tables , Two entity fields are generated for foreign key columns. @Entity public class A{ A ...
0
votes
1answer
45 views

@Entity Relation between tables on different databases

I'm new on Java Enterprise and JPA (Using EclipseLink JPA 2.0 from Netbeans). I'm trying to realize a link between different @Entity classes in different projects and packages, with no success. ...
1
vote
1answer
70 views

JPA, do not want insertable=false, updatable=false, workaround?

i am new to both stackoverflow and JPA so i will try to explain this the best i can. In a entity i want to set the foreign key by giving the int value but also i want to set it by giving a object. ...
1
vote
0answers
76 views

converting hashmap to hashset retaining the constraints

I had a entity class which was using hashmap to one of the attribute with one to many mapping. Now I have converted that map to separate entity class with foreign key constraint. Before class ABC{ ...
0
votes
1answer
50 views

After execution of native update query still old value in retrieved entity

I'm using a native query for updating a value of a certain key in a HashMap annotated with @ElementCollection. After the query is executed the complete entity that contains the HashMap will be ...
0
votes
1answer
56 views

Creating object in entity after all instance variables were set by Eclipse Link

The following JPA entity is given: @Entity(name = "MyEntity") public class MyEntity { @Id protected String id = null; protected String name = null; protected String adress = null; ...
0
votes
3answers
83 views

Can't get a collection using a JPQL query

I have an entity class containing a collection: @Entity(name = "Directory") @Converters({@Converter(name = "PathConvert", converterClass = PathConvert.class)}) public class Directory { @Id ...
0
votes
1answer
72 views

JPQL query updating CollectionTable

I have the following entity: @Entity(name = "Directory") @Table(name = "Directory") public Directory { @Id @Column(name = "id") protected String id; @ElementCollection @MapKeyColumn(name = "file") ...
1
vote
0answers
87 views

spring + JPA: “Extend” entity classes at load-time from configuration

In my small project I have 3 entity classes. These classes should be "extendable" by the end user by configuration (eg. human readable text based, probably xml). With extendable I mean adding fields ...
0
votes
2answers
207 views

EJB with standalone client ignores persistence.xml (?)

Please help, this is driving me crazy. I've been researching this for hours, and couldn't find an example that matches my situation. I'm writing a very simple Java EE App which authenticates users ...
1
vote
1answer
64 views

Entity class is a JavaBean?

I am newbie for learning Java EE and still many concepts confuse me. I found an entity class looks like a JavaBean. Is an entity class a JavaBean? (please explain something here) What is the ...
0
votes
1answer
84 views

JPA not generating tables from entities

Here is some entity: @Entity public class Forest { @Id @GeneratedValue(strategy = GenerationType.AUTO) private long id; public Forest() { } public long getId() { ...
1
vote
3answers
65 views

Creating other public methods in entity class

I have an Entity class @Entity @Table(name = "rule") public class Rule implements Cloneable, Serializable, IPojoGenEntity, IRule, SequencedEntity { private String name; private ...
1
vote
3answers
145 views

Is a method in a JPA entity allowed to throw an Exception?

I have a problem with an @Entity I am trying to create. The problem arises when trying to test the class in Eclipse using an OpenJPA implementation (I have not tried others so not sure if it might ...
0
votes
1answer
118 views

Drools JPA entity object graph updating

When defining Drools rules, what is the best way to accommodate object graphs? Say I have the following Entity object graph with a many-to-many relationship: User <- Group -> Value and I ...
0
votes
1answer
96 views

Understanding: “Cannot perform operation delete on detached object”

Following Entity throws and Error when deleting: Entity: @Entity @NamedQueries({ }) public class Server { //some attributes } I have following quite simple JUnit test that performs the ...
0
votes
2answers
38 views

JPA - Performing an Update

I have the following code: package testingjpa; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.Persistence; import ...
0
votes
0answers
34 views

Java-EE Entity persisting

Currently i'm developing a round based game. now im encountering a problem: ive got 2 Objects: Flower and FlowerDynamic. Some (more or less) static attributes are getting assinged to the flower ...
0
votes
2answers
104 views

Persisting class gives null-value on ID

I'm trying to persist a User-class, which contains 2 lists: one with users to see which are following that specific user, and one with users to see which users that specific user follows. User.java: ...
0
votes
0answers
125 views

Deleted object from JPA/EclipseLink re-appears in the database

I have a Java EE application with EclipseLink/JPA entities communicating with my PostgreSQL database. Everything seemed to work fine but lately I notice more and more strange behaviours with my ...
0
votes
1answer
90 views

jpa entity complex key error

I need your help with my JPA problem. Please look at the following entities and primary complex keys. @Embeddable public class BookingPK implements Serializable { private static ...
0
votes
1answer
47 views

How to Achieve filters while mapping entity to table?

As it is mentioned in this document http://en.wikibooks.org/wiki/Java_Persistence/Advanced_Topics#Filters How to acheive filtering data?This is nothing to do with inheritance.I want to restrict ...
0
votes
1answer
80 views

how get attribute relation from another entity class Java Persistance API and show to JSP through servlet?

I have 2 entities are entities meeting and meetingAgenda. I write code entity class (EJB) from database like this. public class Meeting implements Serializable { ...... @XmlTransient public ...
1
vote
2answers
364 views

How to persist an Array List of type Entity in JPA

How to persist an Array List of type Entity in JPA ?. for example, There is an entity called Table. I am creating an array list ArrayList table= new ArrayList(); Trying to persist it using ...
0
votes
3answers
99 views

can there be multiple instances of the same (Open)JPA entity in an application? Equals does not work for Entity Instances?

Our stack: Tomcat 7, Spring 3.1.1, OpenJPA 2.2.0 I came accross an issue, the root was a comparisson: server1.equals(server2); server1 and server2 are both instances of the Entity "Server": ...
1
vote
1answer
54 views

JPA cascades creating tight couplings

JPA provides cascades which can be used to automatically persist/update/remove other entities a particular entity depends on. Let's say I have three entities: Job, BankAccount and Person (which has a ...
1
vote
1answer
139 views

Service facades, detached entities and eager fetching

Service facades are usually implemented as stateless session beans, which means that any entities they possibly return will be detached immediately. This makes me think that any entity returned as a ...
1
vote
1answer
49 views

How Can I have one parent ENTITY and many types of child ENTITIES in JPA?

I am trying to design my ENTITY CLASSES using JPA annotations. What I am trying to do is as follows : A USER table with id, ***email, password, activation_key, active, role*** and many TYPES OF ...
1
vote
4answers
172 views

Use variable in JPA Annotation for a tablename

I have a database with tables created dynamically (These tables have the same structure but their name is suffixed with the year followed by the number of the current month: data201201, data201202, ...
0
votes
1answer
211 views

JPA entity manager isn't properly updating a field with a OneToMany relationship

I'm using Hibernate 4.1.0.Final and hibernate-jpa-2.0-api. I'm having a problem using an entity manager to update an entity with a OneToMany relationship. Here is the entity: @GenericGenerator(name ...
0
votes
2answers
2k views

JPA Error : The entity has no primary key attribute defined

I am using JPA in my application. In one of the table, I have not used primary key (I know its a bad design). Now the generated entity is as mentioned below : @Entity ...
2
votes
1answer
221 views

Try to use EmbeddedId in Superclass

I have the following problem: I have a base class (used as superclass) with a composite primary key. And now I'am trying to setup subclasses correctly from the base class, but this doesn't work! ...
1
vote
1answer
56 views

Limiting size of jpa association query

The following query gets all the employees in the department: List<Employee> employees = em.find(Department.class,departmentid).getEmployeeList(); However, i am looking to get only a limited ...
0
votes
2answers
122 views

Tracking state change of an entity

I have a need to track he state change of a java entity class that uses MySQL as its database. I know the EntityManager has a mechanism to track state change for the entities it is managing. What I ...
1
vote
2answers
952 views

What is the use of @Entity annotation when entity not included in persistence unit

I have few JPA annotated entity classes in my sample application i am building and almost all are specified in the persistence unit to be managed by the JPA provider. For those entity which are ...
0
votes
2answers
1k views

JPA - Entity with One-to-many - relationship returns no data

I am using the ReverseMappingTool to create JPA-Sources for an existing database-scheme. It works fine, with one exception: After the creation, when calling the get-Methods data from One-to-many ...
0
votes
0answers
83 views

JPA JAX-WS generated @XmlType(s) - how to create @Entity(s)

I have the project starting from XSD types. Maven (often) generates objects @XmlType(s). I want to use these objects as @Entity(ies). What is the best approach for not editing @XmlType(s) (often) ...

1 2 3 4