LayoutController.java 763 字节
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";
	}

}