0
votes
3answers
45 views
Yet another Hibernate question
My application is trying to use Hibernate annotations. I've gotten the 3.5.0 version of Hibernate installed, but when I try to load my app I get the following exception:
…
0
votes
1answer
11 views
Map Database timestamp column to UTC Calendar (JPA) and pass it as UTC date via WebService (jax-ws)
This sounds like a simple task.
Get UTC timestamp value from DB and pass it as UTC date via Web Service.
We have timestamp column DATE_COLUMN and store there time in UTC time zone.
With JPA we get …
2
votes
2answers
10 views
Do Domain Classes usually get JPA or JAXB Annotations or both?
I have a Java enterprise application that provides a web service, has a domain layer, and a hibernate persistence layer. In this particular case, there is not a huge difference (at the moment) …
0
votes
1answer
25 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
56 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
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
0answers
5 views
@Range based hibernate validation checks
I would like to perform @Range based hibernate validation checks (org.hibernate.validator.RangeValidator) in my JPA entity code. But it seems to modify the generated SQL with this checks which I would …
0
votes
1answer
34 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
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
0
votes
2answers
31 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
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) …
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., …
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. …
0
votes
0answers
17 views
JPA(hibernate) @Id Error:Caused by: com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Table ‘DbName.system_sequences’ doesn’t exist
Below is my entity id's definition and I am using hibernate as the jpa implemention
@Id
@TableGenerator(name="customer_generator",
table="system_sequences",pkColumnName="sequence_name",
…
