Damn! Using maven some dependencies got mixed up...got an extra dependency to xerces and xml-api in the classpath. By removing them the "bug" got fixed!
Type: Posts; User: gvl@foundation.be; Keyword(s):
Damn! Using maven some dependencies got mixed up...got an extra dependency to xerces and xml-api in the classpath. By removing them the "bug" got fixed!
Sorry forget to mention the contents of the file:
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0">
<persistence-unit...
Hello All,
I started working on project where spring jpa is being used. I have used spring 2.0-rc1 with jpa support before on another project without problems. In the new project I get an error...
Using JpaCallback did the trick:
- You really have to access the collections (e.g. isEmpty())
public Alb findByIdInitialized(long id) {
final long finalId = id;
Alb albResult =...
Hello all,
I am new to JPA and have written a dao using spring jpa so my dao extends the JpaDoaSupport class. How do i use lazy collections using the JpaTemplate...when using the HibernateTemplate...
Hello all,
we have a gui client application talking to services configured with spring http invoker. The dependencies of these services are configured in the spring application context.
How to...