diff --git a/README.md b/README.md index 31b1bd75..f8e8fc18 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@
铭飞平台
在线演示
- 在线使用手册
+ 在线使用手册
腾讯课堂在线视频
代码生成器视频教程
Windows一键运行版本\Linux一键运行版本
diff --git a/src/main/java/net/mingsoft/cms/action/web/ServerAction.java b/src/main/java/net/mingsoft/cms/action/web/ServerAction.java
deleted file mode 100644
index 215d5228..00000000
--- a/src/main/java/net/mingsoft/cms/action/web/ServerAction.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package net.mingsoft.cms.action.web;
-
-import net.mingsoft.base.action.BaseAction;
-import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.ResponseBody;
-
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-@Controller()
-@RequestMapping("/")
-public class ServerAction extends BaseAction {
-
- @ResponseBody
- @GetMapping("/server.do")
- public String list(HttpServletRequest req, HttpServletResponse resp) {
- LOG.debug("心跳");
- return "";
- }
-}