Spring MVC Hello World project

Tools and Technologies used 1) Eclipse IDE Mars Release (4.5.0) 2) Java 8 3) Spring framework 4.2 4) Tomcat 8 Right click on project explorer and select New Project Select maven project and click on Next Click on Next and select maven web app archetype Enter archetype parameters as below and click on Finish Now […]

Share this article on

Spring Security using Database Authentication

Tools and Technologies used 1)Eclipse IDE Mars Release (4.5.0) 2)Java 8 3)Spring framework 4.2.0 4)Spring security 3.2 5)Tomcat 8 Follow steps from the Spring MVC project link to setup a spring maven hello world project. Create the spring controller class package com.kb.controllers;   import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping;   @Controller public class SpringSecurityHelloWorldControllerDatabase { […]

Share this article on