1.引入elasticsearch与json依赖 <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-high-level-client</artifactId> <versi ...
分类:
编程语言 时间:
2020-12-31 12:57:55
阅读次数:
0
require.context: https://webpack.js.org/guides/dependency-management/#requirecontext require.context(directory, useSubdirectories = true, regExp = /^\ ...
分类:
Web程序 时间:
2020-12-31 12:11:57
阅读次数:
0
1.我们通过Java来向某个WebHook地址发送POST请求,并携带我们需要发送的消息2.代码示例搭建Maven项目,在pom.xml文件里引入httpclient依赖 1 <dependency> 2 <groupId>org.apache.httpcomponents</groupId> 3 ...
分类:
微信 时间:
2020-12-31 12:09:45
阅读次数:
0
查看 python3版本 python3 --version 安装python3.7 sudo apt-get install python3.7 报错如下: Reading package lists... Done Building dependency tree Reading state i ...
分类:
编程语言 时间:
2020-12-30 10:44:34
阅读次数:
0
jsp 基本语法和指令 使用之前要先要在maven 导入依赖包 <dependencies> <!-- Servlet依赖 --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifac ...
分类:
Web程序 时间:
2020-12-29 12:03:32
阅读次数:
0
1、MAVEN依赖 <!-- https://mvnrepository.com/artifact/org.apache.hive/hive-exec --> <dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-exec< ...
分类:
其他好文 时间:
2020-12-28 11:17:44
阅读次数:
0
Mybatis之新建项目 1、创建一个普通的Maven项目 2、导入依赖的包(pom.xml) <!--mybatis--> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3 ...
分类:
其他好文 时间:
2020-12-25 12:17:06
阅读次数:
0
添加MongoDB驱动 <dependency> <groupId>org.mongodb</groupId> <artifactId>mongo-java-driver</artifactId> <version>3.12.0</version> </dependency> //连接 MongoD ...
分类:
数据库 时间:
2020-12-25 12:03:15
阅读次数:
0
1.Maven依赖 <!-- MBG --> <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <version>1.3.5</version> ...
分类:
其他好文 时间:
2020-12-23 12:47:38
阅读次数:
0
用flayway实现springboot项目启动自动执行sql功能: 1、在pom文件中引入依赖包: <!--自动执行sql--> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> <v ...
分类:
数据库 时间:
2020-12-23 11:55:29
阅读次数:
0