DashboardCtrl.java 533 Bytes
package com.ui.ctrl;


import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
@RequestMapping("dashboard")
public class DashboardCtrl {

    @RequestMapping("/toDashboard")
    public ModelAndView toDashboard() {
        return new ModelAndView("dashBoard/dashBoard");
    }

    @RequestMapping("/toOthers")
    public ModelAndView toOthers() {
        return new ModelAndView("dashBoard/others");
    }

}