|
@@ -19,8 +19,6 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
-
|
|
|
/**
|
|
|
* @author: fengdesheng
|
|
|
* @since: 2018/10/17
|
|
@@ -36,11 +34,6 @@ public class IndexController {
|
|
|
@Autowired
|
|
|
private SystemProperty systemProperty;
|
|
|
|
|
|
- @RequestMapping(value = "/", method = RequestMethod.GET)
|
|
|
- public String index(HttpServletRequest request) throws Exception {
|
|
|
- return "redirect:/doc.html";
|
|
|
- }
|
|
|
-
|
|
|
@ResponseBody
|
|
|
@RequestMapping(value = "/init", method = RequestMethod.GET)
|
|
|
public void init() {
|