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.orchestra.portale.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.servlet.ModelAndView; /** * * @author Alex */ @Controller public class AdminController { @RequestMapping(value = "/admin") public ModelAndView admin() { ModelAndView model = new ModelAndView("admin"); return model; } @RequestMapping(value = "/home") public ModelAndView home() { ModelAndView model = new ModelAndView("home"); return model; } }