Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.test1.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.servlet.ModelAndView; /** * * @author FrancAnthony */ @Controller public class HomeController { @RequestMapping(value = "/home", method = RequestMethod.GET) public ModelAndView home(@RequestParam("username") String username, @RequestParam("password") String password) { ModelAndView mav = new ModelAndView(); mav.addObject("username", username); mav.addObject("password", password); mav.setViewName("home"); return mav; } }