1、设置maven 1、在File->settings->搜索maven2、Mavan home directory--设置maven安装包的bin文件夹所在的位置3、User settings file--设置setting文件所在的位置4、Local repository--设置本地仓库的 2、 ...
分类:
其他好文 时间:
2020-07-03 12:42:37
阅读次数:
67
pip install openpyxl 写文件 from openpyxl import Workbook wb = Workbook() # grab the active worksheet ws = wb.active # or # ws = wb.create_sheet("Sheet1" ...
分类:
其他好文 时间:
2020-07-03 01:07:20
阅读次数:
87
背景 最近在很多JDK源码中都看到了Treiber stack这个单词。 比如CompletableFuture中的: volatile Completion stack; // Top of Treiber stack of dependent actions 比如FutureTask中的: /* ...
分类:
其他好文 时间:
2020-07-03 00:37:03
阅读次数:
81
Commands start:立刻启动后面接的 unit。 stop:立刻关闭后面接的 unit。 restart:立刻关闭后启动后面接的 unit,亦即执行 stop 再 start 的意思。 reload:不关闭 unit 的情况下,重新载入配置文件,让设置生效。 enable:设置下次开机时, ...
分类:
其他好文 时间:
2020-07-02 21:52:31
阅读次数:
75
背景:目前项目使用 Angular 开发,里面引入了 laydate.js 做日期控件。 问题:最近项目从 Angular8 升级到了 Angular9,发现升级之后在 IE 里面不能打开日期弹框了。 原因:经过一系列的调试操作之后终于发现,Angular9 的 script 标签都使用了 defe ...
分类:
其他好文 时间:
2020-07-02 18:20:46
阅读次数:
141
create directory mydata as '逻辑目录路径'; 例如: create directory mydata as '/data/oracle/oradata/mydata'; grant read,write on directory mydata to public sele ...
分类:
其他好文 时间:
2020-07-02 16:41:40
阅读次数:
51
2env为我使用virtualen创建的虚拟python环境,我的本地要使用的各类库已下载到文件夹lianxi下面,ceshi2.txt为我要安装的各类库包列表 (2env) [root@xxxxxxx]$ ./2env/bin/python wsgi.pyTraceback (most recen ...
分类:
编程语言 时间:
2020-07-01 20:37:26
阅读次数:
58
其中:lianxi目录为我已下载好各类的离线库包(按自己的使用需要去下载),ceshi2.txt是我本次想要安装的库列表,例:MarkupSafe==1.1.1 (2env) [root@xxxxx]$ pip install --no-index --find-links=lianxi -r ./ ...
分类:
其他好文 时间:
2020-07-01 20:28:21
阅读次数:
40
1 <build> 2 <resources> 3 <resource> 4 <directory>src/main/java</directory> 5 <includes> 6 <include>**/*.properties</include> 7 <include>**/*.xml</inc ...
分类:
编程语言 时间:
2020-07-01 20:10:39
阅读次数:
240
首先看看需求,tab栏上的一个active样式 //找到active时的选择器 .active::before { content: ''; width: 100%; height: 6px; background-color: green; display: inline-block; posit ...
分类:
Web程序 时间:
2020-07-01 17:28:24
阅读次数:
146