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 ...

learn more… | top users | synonyms

0
votes
1answer
8 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
3answers
24 views

Spring JPA @Transactional Atomic

Using Hibernate JPA and Spring @Transacational I have the following Entities in my system: Order Orderline (holds a reference to the order) Customer In a Service class method addOrder annotated ...
0
votes
0answers
18 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
0answers
15 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
0answers
11 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: ...
0
votes
1answer
18 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
28 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
0answers
13 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, ...
0
votes
0answers
9 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
1answer
25 views

JPA and Table Views. Can it be done?

We currently have a JEE 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. Eg: ...
0
votes
1answer
14 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 = ...
9
votes
2answers
754 views

How to apply Static Weaving Ant Task with Eclipse-Link JPA in Netbeans?

I am using Netbeans 7.1.1 and a Glassfish 3.1.2 server. As JPA provider I decided to use eclipse-link 2.3.0 which is shipped with Netbeans. Since I want to use lazy fetching and my project consists of ...
2
votes
1answer
3k views

JPA: Problem with persisting Foreign Key Constraint

I got two Entity: Customer Entity @Entity public class Customer { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; private String name; @OneToMany(mappedBy="customer", ...
1
vote
2answers
672 views

Spring Data JPA and SimpleJPA/SimpleDB

I'm wondering if it is possible to specify SimpleJPA as the persistence provider used by Spring-Data-JPA. I'm not a JPA expert so I hope this question isn't silly. Is it as easy as just specifying ...
4
votes
2answers
545 views

Spring Thrown JpaSystemException instead of DuplicateKeyException

I'm in troubles with DataAccessException handling. When an uniquess key constraint is violated I got an JpaSystemException, and not a DuplicateKeyException! I found some thread talking about this ...
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 ...
1
vote
3answers
125 views

EclipseLink JPA Tracking Changes

I try to log any changes of my JPA entities. For this reason each entity inherits from an abstract entity class which has a list of LogEntry objects. AbstractEntity class: @Entity ...
1
vote
1answer
20 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
0answers
29 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, ...
1
vote
0answers
22 views

GlassFish Server deployment and MySQLNonTransientConnectionException

When I deploy my application, after a while I get this exception: javax.servlet.ServletException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): ...
-1
votes
1answer
28 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
23 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; ...
0
votes
0answers
15 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
7 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, ...
1
vote
0answers
20 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
23 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
2answers
18 views

JPA - Persisting a One to Many performance

Hi, I'm newbie in JPA and I'm getting performance issue in a oneToMany relation persistence. The entities and the controllers have been generated by netbeans. Take a look at the piece ...
1
vote
2answers
31 views

EclipseLink does not work on Netbeans, is this normal?

It'll be weeks that I'm stuck with EclipseLink. I can not persist an object in my database. I use netbeans 7.3. I encountered this problem when I started designing a web application. What follows is ...
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.
1
vote
2answers
21 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)] ...
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 ...
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
13 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 ...
1
vote
1answer
29 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 ( ...
0
votes
0answers
8 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 ...
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(); } ...
-1
votes
0answers
34 views
+50

ignorecase in criteria builder in JPA

Friends How can we do a ignorecase in the criteria builder if I have private final criteriaBuilder cb then i can only use cb.asc or cb.desc but not the ignorecase Please suggest
-1
votes
2answers
40 views

difference between Hibernate Session and EntityManager

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 ...
0
votes
2answers
18 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
40 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 ...
14
votes
6answers
5k views

High Level Java Client selection for Apache Cassandra

I got interested in geospatial applications last time and understood their need for flexible data storage solutions regarding partition tolerance. As I found a job advertisement as java developer ...
0
votes
3answers
58 views

Spring Security + JPA user schema

As per Spring documentation if you need to manage spring security via database you should have some standard schema of tables. for example. create table users( username varchar(256) not null ...
0
votes
3answers
75 views

How to refresh updated entity data without restarting the server

I am using EclipseLink JPA as ORM and web logic 10.3 as an application server in my project. Everything working fine until i got a bug for data refresh. Here is the case one of my entity table row is ...
1
vote
1answer
56 views
+50

QueryDSL joins generate invalid SQL

I'm trying to convert the following SQL query in QueryDSL (JPA, Hibernate provider, Oracle database): select c.id , c.name , count(coalesce(s.company_id_source, t.company_id_target)) ...
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 ...
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
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
28 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
2answers
14 views

Spring Roo @RooJpaActiveRecord parameterized the JPA table catalog

I need a why to change the JPA catalog element in my java class? We have many database environments which we need to be able to deploy our application too. Example: In your dev environment we have a ...

1 2 3 4 5 210