初始化

This commit is contained in:
谢洪龙
2017-07-21 14:43:02 +08:00
commit 825fb4863f
301 changed files with 60263 additions and 0 deletions
@@ -0,0 +1,26 @@
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Administrator
*/
@Controller
public class Index {
@RequestMapping(value = "", method = RequestMethod.GET)
public ModelAndView Index() {
ModelAndView mv = new ModelAndView();
mv.setViewName("index");
return mv;
}
}