Results 1 to 9 of 9

Thread: spring beginner tutorials

  1. #1
    Join Date
    Feb 2009
    Posts
    4

    Default spring beginner tutorials

    Pls can anyone recommend tutorials spring beginner tutorials.I am very new to spring.The resources i have been finding are quite difficult to follow.I have a web application i will like to develop with a mysql database and spring.
    Thanks.
    Last edited by skolob; Feb 16th, 2009 at 08:37 AM.

  2. #2
    Join Date
    Aug 2004
    Posts
    1,104

    Default

    Have you looked at http://static.springframework.org/do...-step-by-step/

    That's probably the most basic intro, but it should get you started.
    Thomas Risberg
    SpringSource by Pivotal
    http://www.springsource.org

  3. #3
    Join Date
    Feb 2009
    Posts
    2

    Default Tutorial error in chapter 5

    I'm going through the tutorials now. I just bumped into an error in one of the code samples and am not sure where to post it, so I'll post it here.

    The error is in Chapter 5. Implementing Database Persistence
    h t t p ://static.springframework.org/docs/Spring-MVC-step-by-step/part5.html

    Add the following two statements to the class JdbcProductDaoTests or it won't compile:

    Code:
    import org.springframework.test.AbstractTransactionalDataSourceSpringContextTests;
    import springapp.domain.Product;

  4. #4

    Default

    I think you may not have spring-test.jar in your classpath.
    Thanks,
    K. Siva Prasad Reddy

  5. #5
    Join Date
    Feb 2009
    Posts
    2

    Default It's on the buildpath...

    The jar is on the buildpath. It still needs an import statement.

    The lack of the second import statement:
    Code:
    import springapp.domain.Product;
    would still cause it to fail. That is a class created earlier in the tutorial.

  6. #6
    Join Date
    Sep 2010
    Posts
    19

    Default

    dear sklob,

    u can try Spring and hibernate by santosh kumar as beginning guide. then go through refcardz.dzone.com for some quick starts.

  7. #7
    Join Date
    Jul 2008
    Location
    France
    Posts
    18

    Default

    you can see diffferent stragegies for implementing hibernate to a MVC Project
    JPAtemplate or Hibernate template from Session Hibernate
    If you have only few request into database you should keep simple JDBC access coupled with RowMapper good luck

  8. #8
    Join Date
    Jul 2011
    Posts
    3

    Default Spring beginner tutorials

    Hi, http://springsourcery.org has some spring, hibernate and JPA tutorials that may help with full source code.

  9. #9
    Join Date
    Aug 2011
    Posts
    7

    Default

    You can begin from this tutorial, easy language with sample working code to get a good hands on spring core.
    http://simplespringtutorial.com/

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •