Tagged Questions
0
votes
0answers
15 views
Hibernate Naming Strategy for @Index
I'm trying to change the way Hibernate names my indexes but cannot find the place where this is done. There seem to be no methods in the various NamingStrategy implementations.
I'm using a table per ...
0
votes
1answer
18 views
How to use 2 PersistenceUnits in one Persistence.xml in a JavaEE application?
I am trying to access 2 different tables in my database.
Initially my persistence.xml was as follows:
<?xml version="1.0" encoding="UTF-8"?>
<persistence ...
-1
votes
0answers
23 views
Migration from eclipselink to hibernate as the persistence provider
I am working on a project that up to now has been using eclipse link as its persistence provider, due to some constraints being put in place we must now use Hibernate instead.
I have found this link ...
0
votes
1answer
52 views
Map<String, String> with JPA
I have JPA entity like this:
@Entity
@Table(name = "ATTRIBUTE")
public class Attribute {
//ID stuff
@Column(name = "NAME", nullable = false)
private String name;
@Column(name = ...
-1
votes
1answer
33 views
org.hibernate.AnnotationException: @OneToOne or @ManyToOne on entities.Ques#tion.examId references an unknown entity: long
I'm trying to setup JPA with a hibernate implementation for the first time with this test project. Ran into the following error:
Exception in thread "main" javax.persistence.PersistenceException: ...
0
votes
1answer
10 views
Persistence of a triple association when adding Spring transactions
I have a Java EE application using JPA (EclipseLink) and Spring framework.
Everything worked fine in my persistence classes until I added Spring transaction management.
I have following entities ...
0
votes
2answers
27 views
Ways to improve this schema/abstraction?
I'm making a webapp for an online exam module and was wondering how my current design and abstraction can be improved. The exams are multiple choice.
I have three tables in my database so far:
...
0
votes
0answers
10 views
Is it possible to place an unpersisted entity in Hibernate's L2 cache?
My app Spring app uses Hibernate as the ORM provider.
A user is represented by an entity, called User. No surprises here. In order to provide support to my clients, I want the ability to log in as a ...
0
votes
1answer
20 views
Composite Primary key in JPA EclipseLink DynamicPersistence
Eclipselink Dynamic Persistence allow multiple primary key by : DynamicTypeBuilder.setPrimaryKeyFields(String primarykeysField...)
But how can i find entity object(instance) by EntityManager.find( ...
0
votes
1answer
24 views
Composite Primary key in JPA
The EmbeddedId or IdClass annotation is used to denote a composite primary key.
How can i use composite primary key without ( EmbeddedId or IdClass ) ?
If it is possible to use composite primary key ...
0
votes
1answer
17 views
Error insert in a table of a new schema in netbeans
I'm working with netbeans 7.1 and a I created a new schema in database sample called TIENDA and I setted it as Default Schema. Then I created a table calle USUARIO with some fields and a field called ...
0
votes
1answer
26 views
Hibernate - “detached entity passed to persist” error for already persisted child
I have an entity, which is already persisted and want to add it to a newly generated parent entity (not yet persisted). If i try to persisted the parent then, i get the error "detached entity passed ...
0
votes
0answers
25 views
Persisting New Entity Won't Join Into JoinTable
I have two entities, one is called UserProfile and other is Groups. They have following @OneToMany and @ManyToOne annotations:
UserProfile entity class:
@ManyToOne
private Groups usersGroup;
...
0
votes
1answer
45 views
IllegalArgumentException: Unknown entity: models using JPA in Play Framework 2
I'm trying to persist data with Play 2 using JPA, but i'm getting:
Execution exception
[IllegalArgumentException: Unknown entity: models.Stream];
Stream.java
`
package models;
import ...
1
vote
1answer
28 views
How to persist an entity declaring a field with a fixed-size array of a few integers using JPA/Hibernate
I have a class with a field wich references a fixed-size array of integers:
class Tracking{
private int[] tracks;
}
What is the best way of mapping the tracks field to a database using JPA ...
1
vote
1answer
51 views
Hibernate, JPA cant delete one-to-many relation
I have one-to-many relation:
@Entity
@Table(name = "Users")
public class User {
@Id
@Column(name = "user_id", nullable = false)
@GeneratedValue(strategy = GenerationType.AUTO)
...
0
votes
2answers
29 views
When to use DiscriminatorValue annotation in hibernate
What and when is the best scenario to use DiscriminatorValue annotation in hibernate?
Thanks.
1
vote
1answer
87 views
java.sql.SQLException: Duplicate entry 'sd' for key 'PRIMARY'
I am trying to persist this role object using JPA in Google cloud SQL . But i am not sure how to catch primary key violation exception and show appropriate message to user .
Need help in formating ...
0
votes
1answer
29 views
Lazy Loading of an Attribute of an Entity in JPA
I have a JSF application with JPA and EclipseLink. There is an entity with several attributes including a Lob type to store large binary data.I need to frequently search the entities and display them ...
0
votes
1answer
39 views
Entities from one to many relationship out of date with JPA/EclipseLink
I have been working with JPA/EclipseLink for a year but I still have a problem understanding how it updates the managed entities when you add an entity in a one to many relationship.
For example, in ...
1
vote
2answers
95 views
Hibernate and tables with same data/columns but with different table names
The database I am working with has many tables with the same columns but with (obviously) different table names (I didn't design it). For example (these are database table names):
company1Data
...
1
vote
1answer
112 views
JPA - Container Managed Persistence doesn't persist entity -JTA
I m trying to integrate Spring and JSF i stuck on persisting object. I dont want to handle transaction (begin - commit etc)
After some googling i could find an answer give what i need in this link ...
0
votes
1answer
40 views
Saving lazy child is causing: TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing
I'm experimenting with lazy loading entities in hibernate but could not get over the error above. I'm basically playing with 2 entities: User and Role:
public class User implements Serializeable {
...
0
votes
2answers
69 views
JPA EntityManager and JavaFx [duplicate]
I tried to use EntityManager in a JavaFx application in NetBeans (my solution is connected to postgres), I proceeded as follows :
1) I created a Persistence Unit.
2) Then Added the Entity Classes ...
0
votes
1answer
109 views
Entity Manager not working in JavaFX
I'm using Persistence unit and Entity classes from Database, all in a JavaFx fxml Application, I succeeded importing all my tables as entities in my Model, the proble is that I get an exceptions and ...
1
vote
2answers
36 views
Hibernate persisting an Object member
Is there any way to persist an Entity member of type java.lang.Object ?
lets say i have an entity DynamicProperty which has a members
private String name;
private Object value;
Value can be of ...
1
vote
1answer
58 views
JPA: No persistence provider for EntityManager - Standard Java App
I have a standard java application (not Java EE), and I'm trying to learn about JPA. The problem is that when I run the project, the console outputs:
1218 [main] INFO ...
0
votes
3answers
45 views
Hibernate is trying to add null to ID when using EJB
I am using Entity Manager to persist.
If I use JPA stand alone in Java Application it works fine but when I try to run through EJB I get following
Hibernate: insert into public.student (id, country, ...
0
votes
1answer
40 views
Many-To-One relationship in Yaml
in my yaml definition, an object doesn't get connected. It is null. I don't see the problem:
Person:
@Entity
@Table(name="person")
public class Person extends Model {
@Id
...
0
votes
1answer
86 views
Exception in thread “main” java.lang.ClassFormatError: Absent Code attribute
I am attempting to scan my entity class for JPA @Column annotation using the code below;
for (Method m : User.class.getMethods())
{
if (m.isAnnotationPresent(javax.persistence.Column.class))
...
2
votes
1answer
43 views
Persist OneToOne relation with SpringData JPA
I have the next two entities with a OneToOne relation between them:
@Entity
@Table(name = "tasks")
public class Task {
@OneToOne(mappedBy = "task", cascade = CascadeType.PERSIST)
private ...
2
votes
2answers
157 views
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
40 views
Is the connection Pool configuration kept outside JPA Context?
Hello i am extracting the connection object from the EclipseLink context by calling: Connection con = entityManager.unwrap(Connection.class);
i am responsible for releasing the Connection in order ...
0
votes
1answer
82 views
JPA/HSQLDB Persistence class not found error
I'm pretty new to JPA and HSQLDB, and I'm havin a weird error when I'm trying to create my EntityManagerFactory. Its a Web Dynamic project in Eclipse (with Tomcat 6.0 as web server) and I imported all ...
0
votes
1answer
91 views
Java many-to-many object does not persist in join table
The 'Batch' object persist's perfectly in the database if I don't include the many-to-many property 'Test'. I have already tried out many different things from similar questions but can't find an ...
1
vote
1answer
49 views
Why don't join queries hit Hibernate second-level cache?
I have some confusion regarding Hibernate second-level cache.Of what I have read,Hibernate second-level cache stores only the ids and is beneficial only in case of lookup by id queries.Why does ...
0
votes
1answer
134 views
Vaadin JPAContainer SQLContainer BeanItemContainer
I am a newbie to Java Persistance and Vaadin. I have been desperately trying to figure out how to use the SQLContainer and I have somewhat succeeded.
I have also succeeded in using
BeanItem ...
0
votes
0answers
17 views
Delete child in OneToMany mapping
I have a OneToMany mapping between a person and account.
One person can have many accounts.
I am using web services to transport soap messages.
when i am creating a person with 2 accounts everything ...
1
vote
3answers
151 views
Persistence layer design in Java EE 6/7
The last time I developed an app using JBoss 7.1 (Java EE6 standard), I wrote the persistence layer using DAOs.
First of all, I had an "abstract" DAO which was the father of all concrete daos:
...
1
vote
1answer
52 views
How to get Connection Pool from EclipseLink
hello i have a JPA (EclipseLink) App already working and another application with pure JDBC deployed onto the same server and pointing into the same DB and schema so want to make the JDBC app to be ...
0
votes
0answers
27 views
How to create EntityManager from DataService?
I have:
@ Resource
DataService dataService;
@ Resource
AnnotationSessionFactoryBean sessionFactory;
@ Resource
HibernateTransactionManager transactionManager;
I need an EntityManager.
Is there a ...
0
votes
1answer
140 views
“uses a non-entity [class java.lang.Double] as target entity in the relationship attribute”, what do I do wrong?
I cannot run my project because I get this error:
Exception Description: Predeployment of PersistenceUnit [RekeningAdministratiePU] failed.
Internal Exception: Exception [EclipseLink-7250] (Eclipse ...
0
votes
2answers
136 views
DAO MVC: why my class is NOT POJO
I use DAO MVC, and I after some googling I consider to store some variables as Enum in java and String in MySQL. So I create in Item.java (that will be persist into Item table) static initialization ...
2
votes
1answer
61 views
Any frameworks for dynamically creating schema on-the-fly to support adhoc JSON object map persistence?
Here is a requirement that I am trying to nail down - there is this incoming JSON data which represents an Object Map (think nested objects, each having one or more attributes) which I need to persist ...
2
votes
1answer
164 views
Composite primary key with many to one relation ship does not support mapping error
I have three entities which form the association relationship by having composite primary keys that also foreign key of other tables. These are the implementation of these entites:
@Entity
...
0
votes
1answer
43 views
using @Embedabble with a foreign key and manyToMany relation
I wrote an example for the code i am trying to implement, i get an error with Constraint "Student_Teacher_FK" already exists.
the @embiddable class has a foreign key that is created twice with ...
1
vote
1answer
98 views
Persist a List with order and duplicates in JPA/EclipseLink
I have basically two Entities Entity1 and Entity2.
Entity1 contains this bit of Code:
@OneToMany(cascade=CascadeType.PERSIST)
@OrderColumn
List<Entity2> e = new LinkedList<Entity2>();
...
1
vote
1answer
748 views
Using JPA with Hibernate implementation: entityManager.remove - not working
I am using JPA over Hibernate 4.1.4.Final implementation. My problem is that I can't get EntityManager#remove() working. All other: update, insert, select operation are working just fine except this ...
0
votes
1answer
64 views
J2SE JPA persistence behaviour
i'm currently developping a desktop application (J2SE). I'm trying to use jpa to persist my objects but i had some strange results.
I have one entity that can have children. When i persist the upper ...
2
votes
1answer
84 views
JPA 2 @JoinTable with keygeneration
Is there a way in JPA 2 to use a @JoinTable and generate a UUID key for the id of the row? I do not which to create new entity for this table (even if that would solve the problem) and I do not whan't ...





