1.修改包结构为cn.keking,

2.新增压缩包内文件名称排序
This commit is contained in:
kl
2018-01-17 14:10:40 +08:00
parent 6d621dc05f
commit dcf37b94db
22 changed files with 2280 additions and 4 deletions

View File

@@ -0,0 +1,24 @@
package cn.keking.web.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
* 页面跳转
* @author yudian-it
* @date 2017/12/27
*/
@Controller
public class IndexController {
@RequestMapping(value = "index", method = RequestMethod.GET)
public String go2Index(){
return "index";
}
@RequestMapping(value = "/", method = RequestMethod.GET)
public String root() {
return "redirect:/index";
}
}