Commit 4a7d6b3a authored by msgroup's avatar msgroup
Browse files

readme更新

No related merge requests found
Showing with 1 addition and 23 deletions
+1 -23
......@@ -25,7 +25,7 @@
<p align="center">
<a href="https://www.mingsoft.net" target="_blank">铭飞平台</a>
<a href="http://cms.demo.mingsoft.net/ms/login.do" target="_blank">在线演示</a>
<a href="http://doc.mingsoft.net/plugs-cms/" target="_blank">在线使用手册</a>
<a href="http://doc.mingsoft.net/mcms/" target="_blank">在线使用手册</a>
<a href="https://mingsoft.ke.qq.com/?tuin=383187f3#tab=1&category=-1" target="_blank">腾讯课堂在线视频</a><br/>
<a href="https://ke.qq.com/course/3026403" target="_blank">代码生成器视频教程</a><br/>
<a href="https://cloud.189.cn/t/I3maM3uURjmm" target="_blank">Windows一键运行版本\Linux一键运行版本</a>
......
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 "";
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment