AbstractChannelHandlerContext.class 对于write操作,会先判断下一个outboundhandler的执行线程是否是当前线程 如果是,则执行invokewrite 如果不是则让handler所在线程执行 execute一个任务 对于业务线程write,当时先增加水 ...
分类:
其他好文 时间:
2020-01-04 01:09:15
阅读次数:
83
1.通过模块netifaces获取,当系统为Windows时,可能会有报错现象 import os import sys try: import netifaces except ImportError: try: command_to_execute = "pip install netiface ...
分类:
编程语言 时间:
2020-01-03 21:35:08
阅读次数:
218
打包失败,但是不知是具体是什么引起得,使用mvn -e clean package,定位到报错得代码 在定位到代码,打上断点,使用maven 打包debug模式 找到dubbo.properties,发现有三行空 删除dubbo.properties,问题解决 ...
分类:
编程语言 时间:
2020-01-03 14:27:31
阅读次数:
108
1.执行python manage.py runserver 127.0.0.1:8000 命令 入口 manage.py 2. 进入django.core.management __init__.py ManagementUtility类 3.执行execute()方法 这是整个流程的关键点 代码 ...
分类:
其他好文 时间:
2020-01-01 20:48:00
阅读次数:
112
linux常用文件处理命令 一般ls l 查看文件后,一般会带上 rw r r等操作,这表明分别是owner/group/others三种身份的read/write/execute的三种权限 其中r:4,w:2,x:1 linux常用目录处理命令 linux常用文件查看操作 linux系统用户账号的 ...
分类:
系统相关 时间:
2020-01-01 14:54:15
阅读次数:
124
Executor Framework e.g. Runnable interface specifies a task to execute concurrently with other tasks. run() contains the task to perform. Executor Int ...
分类:
编程语言 时间:
2019-12-31 18:23:13
阅读次数:
66
刚编写的一个shell文件执行时突然遇到shell文件不能运行,一下子觉得奇了怪了,明明写的shell文件,而且添加了可执行权限,竟然提示这个结果:如下 尝试对文件的用vim打开该sh文件,输入:set ff ,显示fileformat=unix,说明没有问题(如果显示fileformat=dos, ...
分类:
其他好文 时间:
2019-12-31 12:11:01
阅读次数:
84
命令模型的主要元素: 1、命令 2、命令绑定:命令连接到相关的应用程序逻辑 3、命令源:命令源触发命令, 4、命令目标:应用程序逻辑。 ICommand接口 命令模型的核心是System.Windows.Input.ICommand接口。 该接口包含两个方法和一个事件: void Execute(o ...
SQL报错异常:Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0. --首先明确一点 ...
分类:
其他好文 时间:
2019-12-27 13:52:36
阅读次数:
85
以ms sql server 14 v17为例。 如下表dbo.Q中有一个字段'' 首先在数据库的系统存储过程列表中: 找到sys.sp_addextendedproperty,使用这个为字段添加一个说明。 EXECUTE [sys].[sp_addextendedproperty] @name=N ...
分类:
数据库 时间:
2019-12-27 13:30:48
阅读次数:
96