Search:

Type: Posts; User: TimVD; Keyword(s):

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    2,043

    Yes I was planning to put a "Service" class...

    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!
  2. Replies
    8
    Views
    2,043

    You were right! It was a problem with CGLIB!!!! ...

    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>...
  3. Replies
    8
    Views
    2,043

    well, I'm one step closer now I think, but now...

    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...
  4. Replies
    8
    Views
    2,043

    1) scan the annotated @Repository classes, you...

    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)...
  5. Replies
    8
    Views
    2,043

    Combining dependency injection with hibernate.

    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...
  6. Replies
    1
    Views
    1,924

    Configuring the Jaxb2Marshaller

    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...
  7. Replies
    0
    Views
    487

    Localization with multiple parameters

    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...
Results 1 to 7 of 7