From 4a7d6b3ada69b334add297d7e446c1ca38de843d Mon Sep 17 00:00:00 2001 From: msgroup Date: Fri, 14 May 2021 09:00:33 +0800 Subject: [PATCH] =?UTF-8?q?readme=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- .../mingsoft/cms/action/web/ServerAction.java | 22 ------------------- 2 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 src/main/java/net/mingsoft/cms/action/web/ServerAction.java 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 ""; - } -}