pom.xml导入pinyin4j的依赖 <dependency> <groupId>com.belerweb</groupId> <artifactId>pinyin4j</artifactId> <version>2.5.1</version> </dependency> 汉字转拼音工具类 pa ...
分类:
编程语言 时间:
2021-06-29 15:57:55
阅读次数:
0
#1、安装ElasticSearch ###拉取镜像 docker pull docker.elastic.co/elasticsearch/elasticsearch:7.1.1 ###创建资料卷 docker volume create es-data docker volume create ...
分类:
其他好文 时间:
2021-06-28 21:17:34
阅读次数:
0
import com.alibaba.fastjson.JSON; import org.apache.commons.lang.StringUtils; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; ...
分类:
Web程序 时间:
2021-06-25 17:08:46
阅读次数:
0
行内与独行 行内公式:将公式插入到本行内,符号:$公式内容$,如:\(xyz\) 独行公式:将公式插入到新的一行内,并且居中,符号:$$公式内容$$,如:\(xyz\) 上标、下标与组合 上标符号,符号:^,如:\(x^4\) 下标符号,符号:_,如:\(x_1\) 组合符号,符号:{},如:\({ ...
分类:
其他好文 时间:
2021-06-25 16:35:14
阅读次数:
0
一、报错现象 这是一个在使用 DB2数据库过程中比较常见的错误, 报错信息如下 Exception stack trace: com.ibm.db2.jcc.am.SqlException: DB2 SQL Error: SQLCODE=-805, SQLSTATE=51002, SQLERRMC= ...
分类:
数据库 时间:
2021-06-22 18:20:48
阅读次数:
0
什么是Mybatis 一款优秀的持久层框架,避免了JDBC底层繁杂的手动设置参数和获取结果集的过程。能够使用xml文件或注解形式来映射实体类和数据库内容。 Mybatis官方文档: http://www.mybatis.org/mybatis-3/zh/index.html Github上地址:ht ...
分类:
其他好文 时间:
2021-06-22 18:13:22
阅读次数:
0
Elastic的字符串属性分成:keyword 和 text ,一般我们会把所有字符串设置为 keyword: 默认字段属性的设置规则: PUT /test_idx { "settings": { "number_of_shards": 3, "number_of_replicas": 1 }, " ...
分类:
其他好文 时间:
2021-06-17 16:34:28
阅读次数:
0
1.下载安装 wget https://artifacts.elastic.co/downloads/kibana/kibana-7.0.0-x86_64.rpm yum install -y kibana-7.0.0-x86_64.rpm 2.修改配置文件 vim /etc/kibana/kiba ...
分类:
其他好文 时间:
2021-06-16 18:25:40
阅读次数:
0
一 新增文档 #新增一个id为1的书籍(POST和PUT都可以) POST lqz/_doc/1/_create #POST lqz/_doc/1 #POST lqz/_doc 会自动创建id,必须用Post { "title":"红楼梦", "price":12, "publish_addr":{ ...
分类:
其他好文 时间:
2021-06-16 17:39:04
阅读次数:
0
1、原生集成 # https://github.com/elastic/elasticsearch-py # https://github.com/elastic/elasticsearch-dsl-py # Official low-level client for Elasticsearch # ...
分类:
编程语言 时间:
2021-06-16 17:36:10
阅读次数:
0