The Java Persistence Architecture API (JPA) is a Java specification for accessing, persisting, and managing data between Java objects / classes and a relational database. JPA was defined as part of the EJB 3.0 specification as a replacement for the EJB 2 CMP Entity Beans specification. JPA is now ...
0
votes
0answers
4 views
Hibernate and tables with same data/columns but with 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
...
0
votes
0answers
12 views
“Duplicate XML entry” when reusing a mapped-superclass
I have declared this under entity-mappings and it works fine, but when I use this code in another entity-mappings, it throws the following error:
Caused by: java.lang.IllegalStateException: ...
1
vote
1answer
15 views
org.springframework.security.authentication.AuthenticationCredentialsNotFoundException: An Authentication object was not found in the SecurityContext
I have a web application in the following environment.
Spring 3.2.2
Spring Security 3.2.0
JPA 2.0
JSF 2.1.9
I have added the following libraries related to Spring security to the classpath.
...
0
votes
0answers
19 views
Multiples Project Persist Spring Data
I'm Having a Weird problem with Spring Data.
I Have 2 different projects, witch one have your schema on postgres.
on the first project i can do the CRUD in any entity and everything work's fine.
...
0
votes
1answer
9 views
Error when creating entity manager factory for persistence unit
I was facing the following error when starting my EJB application in IBM WebSphere Application Server WAS 7.
JPAPUnitInfo E CWWJP0015E: An error occurred in the
...
0
votes
0answers
8 views
How do I implement GROUP BY in vaadin container using JPAContainer DefaultQueryModifierDelegate?
I'm using Vaadin's JPAContainer to add where clauses, but how do I use group by?
data.getEntityProvider().setQueryModifierDelegate(
new DefaultQueryModifierDelegate() {
...
0
votes
1answer
20 views
Persistence Context with Roo
I am a little confused as to when things become detached and the scope of the persistence context. Are my entities only "managed" within each method that roo generates? I ask because I have read ...
0
votes
0answers
19 views
Play Framework with JPA packages not found
I am trying to create an application using Playframework 2.1.1 and JPA/Hibernate 4.2.1.
I followed this documentation, added these dependencies
val appDependencies = Seq(
"org.hibernate" % ...
0
votes
0answers
19 views
How to best implement 'Filtering' on multiple fields from 4 tables using JPA criteria queries?
I am using JPA for my project to query database and all entities are mapped according to DB design via annotations. DB is postgreSQL.
First let me explain the table structure in brief:
Table_A
Aid
...
0
votes
0answers
6 views
hyperjaxb3 0.5.6 customization <hj:generated-value> does not annotate id with @GeneratedValue
I want to customize my hyperjaxb3 generated classses by marking an existing property as a generated identifier with hj:generated-value tag . In my bindings.jxb file I mark the id of Status as ...
1
vote
1answer
19 views
best practiese using uni/bi assoications in jpa/hibernate
I have doubt which one can i use uni/bi directional assications.Hibernate was recomended to use Bi direcitonal assoicatation Best Practies.But some of people answered to use uni directional ...
0
votes
1answer
22 views
How to remove records from jointable which is having many to many realtion in jpa
I am getting the constraint violation exception whil deleting the entries
I have Relation tables TransportationEvent and Conclusion
relation islike
@Entity
public class TransportationEvent {
...
0
votes
3answers
52 views
Spring JPA @Transactional Atomic
Using Hibernate JPA and Spring @Transactional (with Atomikos JTA implementation) I have the following Entities in my system:
Order
Orderline (holds a reference to the order)
Customer
In a Service ...
1
vote
2answers
25 views
Creating and extending JPA entity classes at runtime from config file
I have 3 entity classes and more stuff. I want to create a tool in which the user can create new entity classes and/or add additional fields to those existing 3 entity classes including JPA ...
0
votes
1answer
13 views
what are the possible locations of persistence.xml file in a web archive in jpa and how to specify that location for getting EntityManagerFactory?
**EntityManagerFactory factory=Persistence.getEnityManagerFactory(???);**
In specification they are explained in the context of EJBs.But i am not understanding the actual possible locations of ...
0
votes
0answers
28 views
Automaticly insert and update ID of oneToMany entities (Hibernate/JPA with spring transactions)
I having some trouble with spring transactions and oneToMany entities.
I have a central entity which is "Candidat" I want to persist and update fields/relations on cascade (and orphans removal for ...
0
votes
2answers
37 views
JPA and Table Views. Can it be done?
We currently have a Java EE system where we are mapping to our database using JPA. It is a fairly well developed system with about 20 entities.
We now have been ordered to use Views for everything. ...
0
votes
1answer
16 views
@UniqueConstraint does not affect DELETE statement on @CollectionTable Hibernate
We have an Entity with embedded collection.
1) Initial configuration
@Entity @Table
public class A implements Serializable {
@ElementCollection
@CollectionTable(name = "A_B", joinColumns = ...
0
votes
0answers
19 views
JPA CriteriaBuilder: Predicate with a Serializable field throws an exception
I have an entity with a persistent field declared as Serializable.
I would like to build a query with the CriteriaBuilder, that filters the results by the Serializable field.
The database is Oracle, ...
1
vote
2answers
25 views
How do I do a “deep” fetch join in JPQL?
I don't think I will ever fully understand fetch joins.
I have a query where I'm attempting to eagerly "inflate" references down two levels.
That is, my A has an optional Collection of Bs, and each ...
0
votes
0answers
47 views
Why doesn't JPA/Spring creates sequences on Oracle DB
I'm using JPA to implement my entity framework backed by Hibernate as an ORM to work with Oracle DB.
Everything is glued up (Autowired) with Spring.
To generate the DB schema I've added this to the ...
0
votes
2answers
46 views
Repository Inheritance
I would like to create a repository which performs the basic CRUD operations.
Since I have different kind of photos (CompanyPhoto, CarPhoto, ..), I would prefer to make the JPA repository generic, ...
0
votes
1answer
16 views
How to get the entry index in a query with ORDER BY
I need to figure out a way to get the index of every entry in a query result, let me show an example:
Suppose we have 3 entries in the Person table.
Willie
Mike
Alan
And I want to query that ...
0
votes
0answers
12 views
ViewerSupport.bind doesn't work correct with entities
In my RCP-Application I have a TableViewer which is bind to a WritableList of persons:
input = new WritableList(ModelProvider.INSTANCE.getPersons(), Person.class);
ViewerSupport.bind(viewer, input, ...
0
votes
0answers
12 views
GAE, JPA, XG-transactions, too many entity groups exception
I know there is limit of 5 entity groups in XG-transaction on GAE but I think I am using only 3 groups(Commodity, Category, CommodityCategory) in one transaction and still getting this exception:
...
1
vote
0answers
26 views
Read image stored as blob, directly into byte[] using springdata
I have an image stored in an Oracle database and I'm using spring data to retrieve the image.
@Query("SELECT c.binaryContent from ContentEntity c join c.ParentContentEntities pce where ...
0
votes
1answer
34 views
How does orphanRemoval=true work in JPA 2.0
Can I just check how orphanRemoval=true works? Is it a SQL operation, i.e. the database is checked for orphans after the changes are merged. Or is it an in memory operation which tracks that an ...
0
votes
1answer
26 views
JPA: How can I Select @Embeddable Class
I will select all the columns from @Embeddable Class Certification. But i cann't select it. how can i do select the Embeddable class.
@Entity
public class Department implements Serializable {
...
0
votes
0answers
23 views
Hibernate/JPA - @AttributeOverride usage in multiple level inheritance
We are attempting to create the following structure: SuperClass, MiddleEntity extends SuperClass ,LowLevelEntity extends MiddleClass.
MiddleEntity and LowLevelEntity have different reference columns ...
0
votes
0answers
17 views
Hibernate JPA maven
I want to use Hibernate as JPA provider with glassfish server.
I added hiberante-entitymanager dependency with maven but i keep getting this error every time i run the project. Am i missing another ...
0
votes
0answers
9 views
Eclipse JPA tools fails to load schema metadata for SQL Server
I am trying to use JPA with SQL Server. Eclipse has great tools to map entities from database and vice-versa. For this to work, I need to associate a connection to a JPA project.
So I created a ...
0
votes
1answer
27 views
columnDefinition=“DATE DEFAULT SYSDATE”, don't work
I am using this code:
@Column(name = "FECHA_CREACION_TIMESTAMP",columnDefinition="DATE DEFAULT SYSDATE", insertable=false)
@Temporal(TemporalType.TIMESTAMP)
private Date fechaCreacionTimestamp;
...
1
vote
1answer
30 views
JPA modeling a table without an entity ID
I'm building a simple indexing system for a list of products. I have a table of keywords and product IDs, and a score indicating the relevance of the keyword to the product:
CREATE TABLE item_index (
...
-1
votes
2answers
42 views
difference between Hibernate Session and EntityManager [duplicate]
What is the difference between the Hibernate Session class and the EntityManager class? I know that EntityManager implements the Java Persistence API, but I am not sure what its relation is with ...
1
vote
2answers
24 views
PreUpdate listener triggered during empty update
I have an entity with the last modified attribute:
@Temporal(TemporalType.TIMESTAMP)
private Date lastModified;
@PreUpdate
@PrePersist
protected void onUpdate() {
lastModified = new Date();
}
...
0
votes
2answers
19 views
How can I make this sql query with jpa ?
I'm trying to create a query in my entities.
I have these following tables in mysql DB :
Categorie : id, nom ...
Article : num_code_barre_, categorie ...
In my entity Categorie :
...
@Id
...
0
votes
1answer
16 views
Get counts of values of an Enum in JQL
Is thare any way a JQL can get the counts according to the values of an Enum? For example, Enum has values as Single, Married, Divorced, etc. and get the counts of Persons Entity in a single Java ...
1
vote
0answers
28 views
Composite Unique Index created on each deploy
I'm using Spring 3.2 with Hibernate 4.2.1.Final and MySql 5.5.
Each time I reload my webapp hibernate creates a new Composite Unique Index of my entities.
For example in my entity I have:
...
0
votes
1answer
29 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
41 views
JPA @PreUpdate not called on all entities
I have an @MappedSuperclass that contains metadata stuff like creation and last modified date. All my entities extend this class. The class also has a method annotated with @PreUpdate that set these ...
0
votes
1answer
9 views
Centos JBOSS deploy war file fail, cannot load the persistence.xml. Working on Windows 7 but not centos
i have spent two days still can't solve the problem.
My problem is that I have a war file using JPA and Hibernate. When i deploy on windows JBOSS AS 7.1.1 it works prefect. However, when i deployed ...
0
votes
0answers
19 views
JPA detached entity error and confused about onetomany relationships plus merge vs persist
CREATE TABLE `ATable` (
`id` INTEGER NOT NULL AUTO_INCREMENT,
`notes` VARCHAR(200),
PRIMARY KEY (`id`)
);
CREATE TABLE `BTable` (
`id` INTEGER NOT NULL AUTO_INCREMENT,
`notes` ...
0
votes
1answer
29 views
JPA products DB model design
I need to create a products DB. My products will have common attributes, such as price, description, brand... and specific ones, depending on their category (notebooks will have display size, ram, cpu ...
0
votes
0answers
16 views
Measuring how many transactions are done on JTA application
I had a web software running in a Jboss AS 7 container witch saves our data in a PostgreSQL 9.1 database via JPA, an its configuration delegated to JTA.
Last year it was adapted to run at AWS EC2 ...
3
votes
1answer
36 views
best practice to synchronize database changes with hibernate mapping file
Assuming an existing application which deals with lets say 20+ tables, needs to be rewritten using java/jpa/hibernate and if all the tables already existed, is it the usual/best practice to use ...
-1
votes
1answer
30 views
JPA child doesn't persist when parent persist method is called
This child entity is not persisted along with the parent when em.persist is called
@Entity
@Table(name="Z_PARENT")
public class Parent {
@Id
@TableGenerator(name="parentIDGen", ...
0
votes
1answer
24 views
JPA eclipselink bypass persistence context
There is a way to bypass the persistence context and use the entities only as wrapper of database tables?
I've read that I can set NONE to shared_cache_mode, but I've understand how it's works.
0
votes
1answer
27 views
Retreive initial data from EJB in View Scoped JSF Managed Bean
It seems that an EJB(stateless) cannot be injected into a View Scoped JSF Managed Bean.
Doing so gives a com.sun.faces.mgbean.ManagedBeanCreationException:
...
1
vote
2answers
22 views
Primary Key null error in @NamedStoredProcedureQuery for eclipselink
I am getting following error while calling oracle stored procedure
Exception Description: The primary key read from the row [DatabaseRecord(
retval => null
error_message => null)] ...
-1
votes
1answer
26 views
How can we inject a DAO dynamically
Is it possible to inject a DAO dynamically, I mean to say inject aDao if the param value is "a" or inject bDao if the param value is "b". I know we can inject both the DAO's and use it as per the what ...

