You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
496 B
25 lines
496 B
package com.xxl.job.controller;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.ui.Model;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
/**
|
|
* index controller
|
|
* @author xuxueli 2015-12-19 16:13:16
|
|
*/
|
|
@Controller
|
|
public class IndexController {
|
|
|
|
@RequestMapping("/")
|
|
public String index(Model model) {
|
|
return "redirect:jobinfo";
|
|
}
|
|
|
|
@RequestMapping("/help")
|
|
public String help(Model model) {
|
|
return "help";
|
|
}
|
|
|
|
}
|