上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 60 下一页
摘要: 这次来个简单的方法 通过swagger2 的注解来生成 一,POM <!-- https://mvnrepository.com/artifact/org.apache.poi/swagger --> <dependency> <groupId>io.springfox</groupId> <art 阅读全文
posted @ 2022-02-21 17:25 正怒月神 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 前一章已经讲了一些关于xml取值的方法 这次讲一下,关于xml.value()方法中传参。 如果直接拼接 @data.value('xxxx'+@fieldValue+'xxxx','varchar(max)') 报错:XML 数据类型方法 "value" 的参数 1 必须是字符串文字 正确方式: 阅读全文
posted @ 2022-02-21 15:45 正怒月神 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 转载:SQL取xml中节点值 - 寻道问天 - 博客园 /* 1、xml: 能认识元素、属性和值 2、xpath: 寻址语言,类似windows目录的查找(没用过dir命令的话就去面壁) 语法格式,这些语法可以组合为条件: "."表示自己,".."表示父亲,"/"表示儿子,"//"表示后代, "na 阅读全文
posted @ 2022-02-16 11:12 正怒月神 阅读(741) 评论(0) 推荐(0) 编辑
摘要: 其实很简单, 主要是,kibana和es版本必须一致! 下载地址: Past Releases of Elastic Stack Software | Elastic 一,解压 不多说了 二,运行 三,效果 http://localhost:5601/app/integrations/browse 阅读全文
posted @ 2022-02-11 10:24 正怒月神 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 参考:Getting Started With Elasticsearch in Java Spring Boot 这一篇讲述springboot如何使用ES 开启ES,前一章已经讲了,不赘述。运行bat文件 一,POM <!-- https://mvnrepository.com/artifact 阅读全文
posted @ 2022-02-10 10:33 正怒月神 阅读(759) 评论(0) 推荐(0) 编辑
摘要: 相关文档: Elasticsearch环境搭建和介绍(Windows)_君临天下-CSDN博客_elasticsearch搭建 Installation | Elasticsearch Java API Client [7.16] | Elastic 一,学习链接 很推荐! Installation 阅读全文
posted @ 2022-02-10 10:10 正怒月神 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.jianshu.com/p/11adf2e2d000 工具/测试 package com.example.test.Util; import com.sun.javadoc.ClassDoc; import com.sun.javadoc.FieldDoc; impor 阅读全文
posted @ 2022-02-08 10:16 正怒月神 阅读(1016) 评论(0) 推荐(0) 编辑
摘要: 匹配正则 (先确认//后有没有空格) // +(.*$) 替换正则 /**\n * $1\n */ 说明:// +这个是匹配双斜杠加一个空格(.*$)匹配当前剩余的所有替换的时候$0 是//$1 是注释内容 转载:https://blog.csdn.net/fadedsun/article/deta 阅读全文
posted @ 2022-01-20 13:44 正怒月神 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 说明: GRPC是什么? 首先我们知道 RPC是远程过程调用。 而GRPC是RPC的一种实现。 那么为什么要用GRPC呢? 因为它支持跨语言的开发,换句话说,大家都用过FeignRPC,尤其在spring cloud中。 然而它只支持java语言,而作为微服务,可能有很多其他的服务不是java开发的 阅读全文
posted @ 2022-01-19 14:01 正怒月神 阅读(2269) 评论(0) 推荐(0) 编辑
摘要: 直接上代码 一,POM <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency> <dependency> <gr 阅读全文
posted @ 2022-01-05 14:49 正怒月神 阅读(50) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 60 下一页