...
|
...
|
@@ -6,6 +6,8 @@ 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.
|
|
|
*/
|
...
|
...
|
@@ -15,9 +17,13 @@ public class CronTabManageCtrl { |
|
|
|
|
|
|
|
|
@RequestMapping("/toCronTabManage")
|
|
|
@ResponseBody
|
|
|
public ModelAndView toCronTabManage(Model model) {
|
|
|
return new ModelAndView("crontab/cronTabManage");
|
|
|
}
|
|
|
|
|
|
@RequestMapping("/loadPage")
|
|
|
public void testRed(HttpServletResponse response) throws Exception{
|
|
|
response.sendRedirect("http://10.67.2.2:7079/ui/#/");
|
|
|
}
|
|
|
|
|
|
} |
...
|
...
|
|