Kivy 使用Pyinstaller打包报错:No module named pkg_resources.py2_warn ...
分类:
其他好文 时间:
2020-05-19 12:23:42
阅读次数:
161
C and C++ allow various types of operators. By now, you should be familiar with the basic binary operators +, -, *, / and the boolean operators <, >, ...
分类:
其他好文 时间:
2020-05-19 12:14:52
阅读次数:
62
项目启动是报错: org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.beans.factory.Be ...
分类:
移动开发 时间:
2020-05-19 10:52:54
阅读次数:
63
死磕nginx系列--使用nginx做cache服务 配置文件 nginx.conf 主配置文件 worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type appli ...
分类:
系统相关 时间:
2020-05-18 18:19:55
阅读次数:
57
使用背景: ①当需要接收的数据是number型数据,而父组件却传递了“1” ②忘记传递数据 <CommentItem message={} /> 当父子组件间通过props传递数据时,通过对组件数据进行类型检测,有效监控数据 —— 当数据传递类型出错或者传递空数据可以迅速找到出错的准确位置,更省时方 ...
分类:
其他好文 时间:
2020-05-17 00:52:05
阅读次数:
95
延时队列 Delayproducer.Php Amqpbuilder.Php AmqpBuilder.php <?php declare(strict_types = 1); namespace App\Components\Amqp; use Hyperf\Amqp\Builder\Builder ...
分类:
Web程序 时间:
2020-05-15 15:32:42
阅读次数:
94
AWS Cloud Development Kit (AWS CDK) 安装 Node.js ( = 8.11.x) https://nodejs.org/en/download/ or http://nodejs.cn/download/ 选择manOS或WindowsOS AWS CDK 是基于 ...
分类:
其他好文 时间:
2020-05-15 13:39:57
阅读次数:
152
多态是同一个行为具有多个不同表现形式或形态的能力。 多态就是同一个接口,使用不同的实例而执行不同的操作 如下代码: public class Test { public static void main(String[] args) { show(new Cat()); // 以 Cat 对象调用 ...
分类:
编程语言 时间:
2020-05-14 10:54:24
阅读次数:
59
在签名打包时报错AAPT2 process unexpectedly exit. 之前打包没问题 以为是新更换的资源文件重复(同名不同后缀名的情况) 检查了没有 然后在build文件中添加 buildTypes { release { aaptOptions.cruncherEnabled = fa ...
分类:
移动开发 时间:
2020-05-12 17:20:18
阅读次数:
211
当执行到47行的时候,会开启一个事务,此事务叫最新事务(老大事务),然后执行到51行的时候,老大事务会传播给51行的 userService,具体如何实现,请看我分析: 动态代理调用目标方法: 一直进去会走进 invokeWithinTransaction 方法,如下图: 重点分析 Transact ...
分类:
编程语言 时间:
2020-05-12 16:55:44
阅读次数:
57