LayoutController.java
763 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.agent.controller.system;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class LayoutController {
/**
* 默认页
*
* @return
*/
@SuppressWarnings("all")
@RequestMapping(value = "/", method = RequestMethod.GET)
public String welcome() {
return "redirect:/index";
}
/**
* 主框架模板
*
* @return
*/
@SuppressWarnings("all")
@RequestMapping(value = "/index", method = RequestMethod.GET)
public String index() {
System.out.println("show message!");
//项目启动时候开启 imf 和 redis
// new Thread(new IMFServletManifst()).start();
return "index";
}
}