Yes I was planning to put a "Service" class between my DAO and Controller
I'll also try to do the things with the interfaces you where talking about.
Thanks for the advice!
Type: Posts; User: TimVD; Keyword(s):
Yes I was planning to put a "Service" class between my DAO and Controller
I'll also try to do the things with the interfaces you where talking about.
Thanks for the advice!
You were right! It was a problem with CGLIB!!!!
I had to replace
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-full</artifactId>
<version>2.0.2</version>
</dependency>...
well, I'm one step closer now I think, but now I'm getting an error about the auto-wiring
SEVERE: Exception sending context initialized event to listener instance of class...
1) scan the annotated @Repository classes, you only scanning the @Entity classes
org.goldendragon.yahtzee is my basepackage, so both subpackages org.goldendragon.yahtzee.dao (@Repository classes)...
Hi I'm trying to build a Spring MVC application with Hibernate.
for now my DAO looks like this:
import java.util.ArrayList;
import javax.annotation.Resource;
import...
I have a problem configuring the Jaxb2Marshaller in my project.
I have multiple packages:
be.kdg.groupl.carpooling.oxm.car
be.kdg.groupl.carpooling.oxm.route
be.kdg.groupl.carpooling.controller...
Hi,
I'm implementing localization with the following tutorial: click
so basicly I can change the language of my site with links like "http://localhost/index?lang=eng"
but when I allready...