update:调整了百度鉴别接口升级了依赖,新增了key的相关字段信息

This commit is contained in:
hello-hao
2023-03-16 17:38:01 +08:00
parent 6f6166275a
commit 393ad3138e
7 changed files with 33 additions and 25 deletions
@@ -43,9 +43,9 @@ public class IndexController {
@RequestMapping(value = "/")
public String Welcome(Model model, HttpServletRequest httpServletRequest) {
model.addAttribute("name", "服务端程序");
model.addAttribute("version", "20230101");
model.addAttribute("version", "20230316");
model.addAttribute("ip", GetIPS.getIpAddr(httpServletRequest));
model.addAttribute("links", "tbed.hellohao.cn");
model.addAttribute("links", "www.hellohao.cn");
return "welcome";
}