Tagged Questions
0
votes
1answer
32 views
OpenJPA - How to map View to Entity
I'm using WAS 8.0.0.5, which means I'm using OpenJPA 2.1.2-SNAPSHOT. I'm using the Criteria Query API and Canonical Metamodels. I need to access an Oracle View. The View has 1 column named GUID, ...
2
votes
1answer
87 views
unable to merge entity with derived entities
i am trying out derived entities using @JoinedColumns,
let me show you my code,
below is the sql code,
create table TBL_EMPLOYEE_FIVE(
EMP_ID integer ,
NAME varchar(50),
COUNTRY ...
0
votes
1answer
140 views
Unable to acquire a connection from driver [null], user [null] and URL [null] postgres
Good Morning
I use Eclipse link and JPA, I want to test a small native query and i have an error.
Would you please help me,
I searched in this site and in others and I didn't found a solution.
thank ...
2
votes
1answer
41 views
Share JPA entities among applications
Suppose having several JavaEE 6 applications using the same entities in a database - what would be the best way to share the JPA Enitity classes among them?
Should they be included as classes in each ...
1
vote
1answer
56 views
@EmbeddedId with autogenerated id using @GenerateValue, this mix doesn't works as needed
I am trying to work with @EmbeddedId, this is my code as follows,
create table TBL_EMPLOYEE_002(
ID integer generated always as identity (start with 100,increment by 10),
COUNTRY varchar(50),
...
1
vote
1answer
53 views
How should I best lock and refresh JPA entities?
I am relatively new to JPA and have become very confused about how to best optimistically lock and refresh entities. I would like a set of general purpose methods to handle this consistently in my ...
0
votes
2answers
56 views
Reference key issue while doing many to many relationship using @ElementCollection, @MapKeyJoinColumn
i am trying on many to many relationship, Team member can work on multiple projects and a project can have multiple team member , the table structure is as follows,
create table TBL_PROJECT_ONE(
...
2
votes
1answer
244 views
PersistenceContextType.EXTENDED inside Singleton
We are using Jboss 7.1.1 in an application mostly generated by Jboss Forge, however we added a repository layer for all domain related code.
I was trying to create a Startup bean to initialize the ...
0
votes
1answer
72 views
Strange behaviour in JPA2 entities
While observing some log entries, I observed a behaviour, I do not understand.
I have recreated the scenario.
The entity:
@Entity
public class SimpleEntity implements Serializable {
private ...
0
votes
0answers
56 views
How many @EmbeddedId levels could I have?
this is my second question related to JPA 2.0
I'm trying to make a simple demo application using @OneToMany asociation with the primary key
I have many one to many associations
Company -< ...
1
vote
0answers
93 views
hibernate using jpa and glassfish 3.0.1
hello all i am using hibernate using jpa in my project and accessing dao's like new (dao name).(methdoname)...
eg. new OrdersDao().createOrder()
so i would like to ask you is it a good practice to use ...
1
vote
2answers
102 views
Merging entity with a unique constraint
I have an entity similar to:
@Entity
@Table( name="marchi", uniqueConstraints=@UniqueConstraint(columnNames="codice") )
public class Marchio implements Serializable {
@Id
...
0
votes
0answers
157 views
using jdbc realm with encrypted jpa entities login form
My question is regarding JPA entities and the JDBC realm.
I'm creating a project in which some of my entities included my user entity are encrypted by my own program. This is done in order to holding ...
0
votes
1answer
210 views
java.lang.NoClassDefFoundError: com/mongodb/ServerAddress
i have an jee6 application with eclipselink and mongodb.
i use the nosql-extension org.eclipse.persistence.nosql
when i deploy my application on a local glassfish instance everything works fine.
...
0
votes
1answer
1k views
Unit Test JPA/Hibernate : No Persistence provider for EntityManager
I want to enable Unit Test for my project. I have created the structure as follows.
Directory Structure
.
├── pom.xml
├── src
│ ├── main
│ │ ├── java
│ │ └── resources
│ │ ├── ...
0
votes
1answer
184 views
How can I convert this SQL Query into JPA Query?
I have a query like that:
Select p.* from MyTable p where
id = 1 and version = (select MAX(version) from MyTable where id=1)
I try to convert it into JPA Query. How should it be?
select e from ...
3
votes
1answer
437 views
EclipseLink returns entity with null primary key
Introduction
I have a problem that I'm finding very mysterious. I've searched on Google and StackOverflow, and not found anyone having a similar problem. I tried switching our persistence provider to ...
2
votes
2answers
245 views
How to do JavaMail in EE6 right?
I was wondering how other's do their mailing stuff and what is you opinion about best practices. When I think about how the mailing stuff can be done, I can only think of one solution that can be ...
0
votes
2answers
346 views
Java EE 6, EJB 3.1, JPA 2.0 - error in inserting record in database
I am trying to insert a record in the database (using Java EE 6, EJB 3.1, JPA 2.0). I am getting an error that accountTypeId field is null, but i have set it up as autogenerate. Can anyone please ...
0
votes
2answers
133 views
How to get parent entity?
I use JPA 2 with Hibernate. There are two entity classes, CardElement and IdentityDocumentKind. The last one is an inherited entity of the first one. SINGLE_TABLE inheritance strategy is used. When I ...
0
votes
1answer
608 views
JPA, compound key with foreign keys + persist oneToMany
I'm trying to do something with JPA that'll use a lot on a project but I'm stuck.
I have 2 entities + a kind of "glue" entity, I'll call them
ClassA
ClassB
Glue
I want to add a new ClassA with ...
2
votes
3answers
293 views
JPA Best practice for managing entities in extended Persistence Context
I am using CDI conversation scoped, Seam managed extended persistence context (PC). This provides more fine-grained control over PC and avoids LIEs. I am using CDI Beans instead of EJB Beans. In a ...
1
vote
2answers
387 views
How to make portable AND native ID generation in JPA 2 / Hibernate?
I would like to have native and portable id generation on my JPA 2 entities, currently running Hibernate and MySQL
When using @GeneratedValue(strategy=AUTO), hibernate defaults to the ...
1
vote
3answers
167 views
Is there a way to track changes of an entity?
I have an entity. This entity is modified within a transaction. But at some point I want to know the changes to this entity that were made during the transaction. The reason for that is to trigger an ...
0
votes
0answers
501 views
JPA set default schema name - Netbeans+Eclipselink+Glassfish+JavaDB
I'm developing using Netbeans+eclipselink+glassfish+JavaDB. I created a database in JavaDB and set the username and password. After that I specified a persistence unit with a glassfish data source for ...
0
votes
0answers
76 views
loaded by WebappClassLoader
I use tomcat 7, JPA2, java EE 6
I wanted to use a composite key so u used @class, my my project is structured as follows:
file Voiture.java :
package com.test.data;
import java.util.Date;
...
1
vote
1answer
370 views
Proper use of aggregate statements in JPA Criteria API
I am struggling with the proper use of aggregate statements like countDistinct. I have found some examples for aggregate queries but none that is executed start-to-finish using countDistinct.
I have ...
2
votes
1answer
727 views
CDI injection in EntityListeners
Since JPA 2.0 does not support injection into EntityListener (JPA 2.1 will), decided to use JNDI lookup to get the BeanManager and through it get the logged in user. I defined an EntityListener ...
3
votes
1answer
508 views
JPA's EntityManager should be RequestScoped?
I am developing a JavaEE6 based web application using JBoss7.
In my application I am injecting the EntityManager in my EJBs as:
class ForumServiceEJB
{
@PersistenceContext(type=EXTENDED)
...
8
votes
4answers
2k views
JPA Nested Transactions And Locking
Consider the scenario two methods exists in different stateless bean
public class Bean_A {
Bean_B beanB; // Injected or whatever
public void methodA() {
Entity e1 = // get from db
...
4
votes
1answer
837 views
@PersistenceContext EntityManager thread-safety in Spring and Java EE
EntityManager is not thread-safe by definition.
Servlets specs says that in non-distributed environment and without implementing SingleThreadModel, there is only one servlet instance per definition.
...
1
vote
1answer
608 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
144 views
JPA2.0 & EE6 keeping my entities in sync
I'm new to using ORM tools in enteprise applications. We're building a scaleable application that uses JPA 2.0 and EE6. I'm trying to find a nice pattern to build my application but I can't find a way ...
1
vote
1answer
1k views
JPA Criteria query Path.get left join is it possibile
I have a question regarding JPA criteria.
Here is my JPA query :
CriteriaBuilder criteriaBuilder = getEm().getCriteriaBuilder();
CriteriaQuery<InventoryItemSumReport> query = ...
1
vote
1answer
627 views
JPA 2 Inheritance.TABLE_PER_CLASS with abstract relation
I have the following entities:
@Entity
public class Owner{
@Id
@Column(name = "OWNER_ID")
@OneToMany()
@JoinColumn(name = "OWNER_ID")
private Set<Parent> parents;
...
}
...
1
vote
1answer
2k views
JPA lazy loading Collections in JSF view - better way than using Filters?
Currently I am using a Transaction View pattern to make lazy-loading of collections possible in views.
I have the following in web.xml
<filter>
<filter-name>view</filter-name>
...
3
votes
1answer
648 views
Lazy loading exception when using JSF Converter (refering to a collection)
This is my first post after many research on this problem.
This example is running under Jboss 7.1 with seam 3.1 (solder + persistence + faces) with seam managed persistence context
I'm facing a ...
1
vote
0answers
173 views
JPA/Hibernate inheritance while loading: IllegalArgumentException, try to set wrong subclass
I'm using JBoss 6.1, I have the a JPA entagled situation, as a result I got the following error message:
IllegalArgumentException: Can not set EquipmentB field EquipmentCycleB.equipment to EquipmentA
...
1
vote
2answers
1k views
using JPA2 for an entity update
I'm not really used to JPA... so this is more like a basic question
I use JPA2 - (not hibernate)
I have this function, and I want to make an update on my
@RequestScoped // (this is ...
1
vote
1answer
409 views
Java EE 6 JPA 2.0 provider for DB2/400?
For Java EE development in an IBM iSeries (aka AS/400) environment, I would like to use JPA 2.0. Is there a JPA 2.0 provider with support for DB2/400 databases?
Update: target deployment environment ...
5
votes
1answer
862 views
Select MAX timestamp with JPA2 Criteria API
So my entity has:
@Column(name="TS", nullable=false)
private java.sql.Timestamp timestamp;
My generated MetaModel has:
public static volatile SingularAttribute<MyEntity,Timestamp> ...
0
votes
2answers
519 views
Can JPA 2.0 be used without JavaEE 6?
I am using OpenJPA 2.1 (which implements JPA 2.0) for a command line utility. I am using classes that are new for JPA 2.0.
My compile target is Java SE 1.6
OpenJPA 2.1 comes with all JPA 2.0 ...
2
votes
2answers
244 views
How to test JPA2 mappings in Java EE project?
I'm working on a Java project where I've been tasked to write a few database mappings against a legacy database.
While doing this, I started to question how I was supposed to test if my mappings were ...
3
votes
2answers
101 views
Reading a value from Entity B when reading Entity A (left join on non PK column) - JPA 2.0
so I have:
@Entity
public class Entity {
@EmbeddedId
private MyId id;
// not a part of Entity but a part of OtherEntity
private String lookedUpValue;
}
public class MyId {
private ...
1
vote
1answer
112 views
version property not getting reflected after inserting new instance
When I use em.persist() to insert a new instance of an entity-class, generated id is reflected in entity-class, but the version property still shows null, it is not reflected in the entity-class.
I'm ...
2
votes
0answers
133 views
Update Entities with currentUser-ID
I'm trying to update each entity with an own @EntityListeners({ ModelListener.class }).
ModelListener implements @PrePersist with a method like this:
@PrePersist
protected void prePersist(final ...
0
votes
1answer
534 views
Hibernate & Derby: hbm2dll does not create sequences
I'm using the hibernate3-maven-plugin to call hbm2ddl to export the ddl for my entities.
This ddl file is then used by dbmaintain to initialize an embedded derby database.
But when I launch my Java ...
0
votes
1answer
92 views
@Version not incremented upon relationship change
According to the JPA 2.0 specification:
The version attribute is updated by the persistence provider runtime
when the object is written to the database. All non-relationship
fields and ...
2
votes
1answer
502 views
@ManyToOne(updatable=false) - how it should work?
I want to have a read-only functionality in one of my entities. I know that in JPA 2.0 we don't have such functionality per se. I thought we can achieve it using updateable=false, insertable=false but ...
1
vote
1answer
882 views
@OneToOne(optional=false) and @JoinColumn(nullable=false) used together
I've bumped into this example in JPA 2.0 FR Specification, 11.1.37. OneToOne Annotation, page 403:
@OneToOne(optional=false)
@JoinColumn(name="CUSTREC_ID", unique=true, nullable=false, ...


