Skip to main content

Posts

Showing posts from February, 2014

Spring configuration using maven and eclipse a crash course

Spring configuration using maven and eclipse a crash course: Tools you need to get standard with: Eclipse /springtoolsute M2Eclipse 1.Create a new maven project(Artifactid:maven-archetype-webapp) 2.   We need 3 dependencies they are:      Spring-webmvc       Servlet-api      Jstl We actually don’t need this servlet-api and jstl because tomcat going to serve those for us. Following are the dependencies which we need to add in the pom.xml file:       <!-- Spring MVC framework -->     <dependency>         <groupId>org.springframework</groupId>         <artifactId>spring-webmvc</artifactId>         <version>3.1.2.RELEASE</version>     </dependency> <dependency>         <groupId>javax.servlet</groupId>         <artifactId>servlet-api</artifactId>         <version>2.5</version>                    <scope>provided</scope>     </dependency>     <!-- JSTL -->     <dependenc

Video Tutorials on spring and hibernate

I have been searching for a good video tutorials on spring and hibernate since last two months and I end up with this tutorial series : http://pluralsight.com/training/Courses#java http://pluralsight.com/training/Courses/TableOfContents/springmvc-intro http://pluralsight.com/training/Courses/TableOfContents/hibernate-introduction http://pluralsight.com/training/Courses/TableOfContents/spring-jpa-hibernate As a beginner these tutorial are very help full to me to get started with spring and hibernate . There are plenty of tutorials on php and asp out there . But Tutorials on spring and hibernate are very rare .These tutorials helps you to get started with spring and hibernate  but these are paid  tutorials . If you are not that much rich ; then you can download the stuff from some alternative sites but I am not encourage you to do so . Hope this will help you . Happy coding Basics-In-Java