package com.ui.ctrl; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.servlet.ModelAndView; import javax.servlet.http.HttpServletResponse; /** * Created by craig.qin on 2017/8/10. */ @Controller @RequestMapping("/cronTabManage") public class CronTabManageCtrl { @RequestMapping("/toCronTabManage") public ModelAndView toCronTabManage(Model model) { return new ModelAndView("crontab/cronTabManage"); } @RequestMapping("/loadPage") public void testRed(HttpServletResponse response) throws Exception{ response.sendRedirect("http://mysqlcrontab.yohops.com/ui/#/"); } }