1、连接demo是采用的这篇博客中的内容: https://blog.csdn.net/weixin_39098944/article/details/108067005 主要代码如下: (1)添加依赖 1 <dependency> 2 <groupId>org.apache.kafka</grou ...
分类:
编程语言 时间:
2021-04-30 12:13:39
阅读次数:
0
编译的过程中出现了一个吓人的错误: GOROOT=C:\Go #gosetup GOPATH=C:\Users\ahfuzhang\go #gosetup C:\Go\bin\go.exe mod tidy #gosetup go: downloading github.com/xxx/my_prj ...
分类:
其他好文 时间:
2021-04-29 11:53:31
阅读次数:
0
1。如果取到一个审批节点添加的审批用户 首先 EPM_ask_root_task();//获取rootTask 其次 EPM_ask_sub_tasks();//遍历rootTask 通过节点名称筛选审批节点,得到审批节点 得到审批节点 EPM_ask_sub_tasks();再次遍历节点 通过类型 ...
分类:
其他好文 时间:
2021-04-29 11:53:15
阅读次数:
0
2021年4月24日17:29:22 环境: php8.0.3 centos 8.3 ./configure \ --prefix=/usr/local/php8 \ --with-config-file-path=/usr/local/php8/etc \ --with-curl \ --with ...
分类:
Web程序 时间:
2021-04-27 15:21:59
阅读次数:
0
使用tajia archetype初始化项目 一、编译tajia项目 cd D:/workspace/ D: mvn clean install -Dmaven 注意:tajia项目放在D:/workspace/目录下 二、执行archetype生成模块项目1、生成模块代码放在D:/download ...
分类:
其他好文 时间:
2021-04-27 14:41:06
阅读次数:
0
快速安装体验 build git clone https://github.com/RedisBloom/RedisBloom.git cd redisbloom make 以上命令会生成redisbloom.so文件 动态load redisbloom # MODULE LOAD /redisbl ...
分类:
其他好文 时间:
2021-04-24 13:18:45
阅读次数:
0
这只要在src同级添加postcss.config.js文件 同时文件 里面写上这些,重新跑就没问题了 module.exports = { plugins: { 'autoprefixer': {browsers: 'last 5 version'} }} ...
分类:
Web程序 时间:
2021-04-24 11:47:48
阅读次数:
0
这个东西折腾了一天,在rhel7上死活pip不能用,网上找了各种方法,基本都是垃圾文章,在无数次试验后,终于这篇文章成功装上了 rhel红帽时面对企业的,centos是基于redhat重新编译后的开源免费版,网上找不到适用rhel的很多东西和操作,以后还是用centos吧,两个差不多 centos7 ...
分类:
编程语言 时间:
2021-04-22 16:07:34
阅读次数:
0
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.10.0.tar.bz2 tar -xf freetype-2.10.0.tar.bz2 cd freetype-2.10.0 ./configure --prefi ...
分类:
系统相关 时间:
2021-04-20 14:36:46
阅读次数:
0
前缀树又称字典树,每颗节点结构与一般树有一点不同。 一般树节点 struct TreeNode { valueType val; vector<TreeNode*> next;//个数不固定,个数代表一个节点有多少个子节点 } 本题前缀树节点 struct TrieNode { bool isEnd ...
分类:
其他好文 时间:
2021-04-15 12:01:28
阅读次数:
0