https://blog.csdn.net/wl044090432/article/details/53423333?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase ...
分类:
数据库 时间:
2020-07-06 10:44:29
阅读次数:
78
一.准备工作 1.微信支付id,商户号,商户key 二.微信支付二维码接口 1.引入微信支付相关依赖 <dependencies> <dependency> <groupId>com.github.wxpay</groupId> <artifactId>wxpay-sdk</artifactId> ...
分类:
微信 时间:
2020-07-06 01:19:09
阅读次数:
187
ideaj环境配置 add dependency: opencv341.jar System.loadLibrary(Core.NATIVE_LIBRARY_NAME); run/debug configurations: VM options: -Djava.library.path="openc ...
分类:
编程语言 时间:
2020-07-05 19:21:56
阅读次数:
72
##1. pom文件范例 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven ...
分类:
其他好文 时间:
2020-07-05 13:25:26
阅读次数:
43
sudo rosdep init报错如下: ERROR: cannot download default sources list from: https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/sources.list.d/2 ...
分类:
其他好文 时间:
2020-07-05 00:22:56
阅读次数:
643
2.4 java中操作zookeeper 引入依赖 <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version>3.4.14</version> </dependen ...
分类:
编程语言 时间:
2020-07-04 20:57:40
阅读次数:
51
什么是热部署 应用正在运行的时候升级功能,不需要重新启动应用 对于Java应用程序来说,热部署就是在运行时更新Java类文件 好处:不需要重新手工启动应用,提高本地开发效率 常见热部署 jrebel Spring Loaded spring-boot-devtools 步骤 pom文件添加依赖包 < ...
分类:
编程语言 时间:
2020-07-04 15:29:55
阅读次数:
78
mvn archetype:generate : 反向生成项目的骨架 mvn clean: 清除各个模块target目录及里面的内容 mvn compile: 静态编译,根据xx.java生成xx.class文件 mvn dependency:list : 查看当前项目已被解析的依赖 mvn dep ...
分类:
其他好文 时间:
2020-07-03 21:09:43
阅读次数:
63
ARIMA模型介绍 1.ARIMA模型介绍 参数的确定(p,q,d) 2.ARIMA参数判定 截尾和拖尾问题 3.ARIMA截尾和拖尾问题 ACF和PACF 4.ARIMA自相关和偏相关 平稳性问题 5.时间序列平稳性问题 6.平稳性问题 ...
分类:
其他好文 时间:
2020-07-03 19:49:09
阅读次数:
64
引入maven <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> 单 ...
分类:
编程语言 时间:
2020-07-03 12:37:32
阅读次数:
101