0
votes
1answer
53 views
JPA primary key auto generate
my primary key entity look like below
@GeneratedValue(strategy= GenerationType.TABLE)
private Long id;
when i run, i get error
could not get or update next value;nested exception is …
0
votes
1answer
22 views
Glassfish hangs when serving multiple blob-images from an imageservlet
In my JSP/HTML files i use the following servlet to get blob-images from the MySQL-database.
<img src="/image?id=1" />
Image servlet
This is mapped to a imageservlet, who:
- gets a stateless …
0
votes
1answer
17 views
Java Web-Application deployment and initialization
Hi all,
i'm developing a web-application for managing and sharing images and more general media-types at all.
My technology stack is:
Java 6
Spring 2.5x
JPA 1.0
JCR 1.0 with Jackrabbit 1.6.x
…
0
votes
2answers
30 views
How to implement update () method in DAO using EntityManager (JPA)?
What is the standard way to implement simple update?
Example: we have User with phone number NNNNNN and now we want to set it to YYYYYY.
@PersistenceContext
private EntityManager em;
public void …
0
votes
1answer
33 views
Java JPA Inner JOIN with WHERE statement
Hi folks,
I want to annotate following structure:
I have this query:
SELECT A.*, BES.*, BES_2.*
INNER JOIN BES ON A.a = BES.a AND A.b = BES.b
INNER JOIN BES AS BES_2 ON A.a = BES_2.a AND A.b = …
0
votes
2answers
26 views
Getting Jersey and Hibernate to work together?
I've got a project which requires both Jersey and Hibernate. Problem is they both use incompatible versions of a Jar file (asm.jar) under the covers. I've looked around Google and it appears that it's …
1
vote
2answers
26 views
JPA - Persisting a One to Many relationship
Hi,
Maybe this is a stupid question but it's bugging me.
I have a bi-directional one to many relationship of Employee to Vehicles. When I persist an Employee in the database for the first time (i.e. …
1
vote
0answers
43 views
Annotations of Annotations in Java 5/6
I am setting up Hibernate Caching and want to cache certain entities in different regions. For example, some entities can be "stale" for up to 5 minutes, some for an hour, and some (like lookups) …
3
votes
1answer
33 views
Manual Transactions with Seam POJO
What is best practice for using Database Transactions with Seam when not using EJBs - ie. when deploying Seam as a WAR?
By default Seam JavaBeans support Transactions. I can annotate a method with …
0
votes
3answers
19 views
Hibernate JPA and Spring javax.persistence.TransactionRequiredException: no transaction is in progress
Hi All,
I call
entityManager.flush()
got follow excetion.
I am using Hibernate JAP
1
vote
2answers
36 views
making a jpa oneToMany relationship effective?
I have written a very basic and naive oneToMany relationship between a ChatComponent and its Chat Messages like this:
@OneToMany
List<ChatMessage> chatMessages;
This basically works, i.e., …
4
votes
1answer
98 views
Lazy/Eager loading strategies in remoting cases (JPA)
I'm running into LazyLoading exceptions like the most people who try remoting with an ORM.
In most cases switching to eager fetching solves the problem (Lazy Loading / Non atomic queries / Thread …
0
votes
1answer
75 views
many-to-many JPA mapping inserting but not fething the child collections
Hello good people!
i've hit a block once again with hibernate.I've posted numerous times on different aspects of the user and contact management that i've been building.
The sad thing is that i …
1
vote
1answer
33 views
PreUpdate not firing when adding to a collection
I have a JPA annotated class which contains a collection like so:
@Entity
public class Employee {
@Id
private int id;
@Basic
private String name;
@OneToMany
…
1
vote
1answer
30 views
JPA - saving changes without persist() invoked
Hi,
we are using Toplink implementation of JPA + Spring + EJB. In one of our EJBs we have something like this:
public void updateUser(long userId, String newName){
User u = em.get(User.class, …
