08 2021 档案

摘要:JAVA查询树结构数据(省市区)使用hutool工具实现 代码: @PostMapping("/getTree") public Object getTree() { // 查询数据 List<LxhpArea> areaList = areaService.list(); // 构建的整个树数据 阅读全文
posted @ 2021-08-24 16:52 唐胜伟 阅读(2177) 评论(0) 推荐(0)
摘要:SVN代码迁移至Gitlab 1.导出SVN提交用户(需要在SVN代码目录执行,并且要在GIT BASH 窗口运行) svn log --xml | grep "^<author" | sort -u | \awk -F '<author>' '{print $2}' | awk -F '</aut 阅读全文
posted @ 2021-08-20 17:33 唐胜伟 阅读(1030) 评论(0) 推荐(0)
摘要:Spring Boot 获取项目路径或文件 @GetMapping("/getPath") public void getPath() { // 获取路径三种方法方法,使用Spring Boot 方式,只有 pathA 部署到服务器获取到得路径是能直接使用得 String pathA = Syste 阅读全文
posted @ 2021-08-18 14:32 唐胜伟 阅读(5239) 评论(0) 推荐(1)