1、修改默认安装磁盘 打开安装根目录下的resources文件夹内,找到Config文件将<ShowInstallOptions>false</ShowInstallOptions>改为<ShowInstallOptions>true</ShowInstallOptions> 2、安装完成后打开Ph ...
分类:
其他好文 时间:
2021-04-06 14:21:42
阅读次数:
0
mybatis 3.4.1之后,允许不加 @Param指定参数名称,自动会以入参的名称作为param key useActualParamName 允许使用方法签名中的名称作为语句参数名称。 为了使用该特性,你的项目必须采用 Java 8 编译,并且加上 -parameters 选项。(新增于 3. ...
分类:
其他好文 时间:
2021-04-05 12:39:41
阅读次数:
0
## 1. 下载node [node官网](https://nodejs.org/en/) ## 2. 安装镜像 npm install -g mirror-config-china ## 3. 下载项目git clone https://******.git ## 4. 安装项目依赖 npm i ...
分类:
Web程序 时间:
2021-04-05 12:02:01
阅读次数:
0
chrome 密码不同步 ubuntu 删掉 ~/.config/google-chrome/Default/‘Login Data' mac mac 下该文件的路径是 /Library/Application Support/Google/Chrome/Profile 1/Login Data w ...
分类:
其他好文 时间:
2021-04-02 13:35:07
阅读次数:
0
默认mongoDB 并没有用户限制,任何人都可以连接数据库 默认有 admin 、 config 、local、 test 四个数据库,show dbs 命令开始会显示前三个数据库,因为test 没有数据。 1、内置角色 ####1.1 当前数据库的角色 |角色| 能够执行的操作| | | | | ...
分类:
数据库 时间:
2021-04-02 13:14:47
阅读次数:
0
# 需要修改oracle的配置数据库 import cx_Oracle from Common.dir_config import caps_dir import yaml class DoSql: def do_orcal(self,query_sql,state='all'): # 1打开yam ...
分类:
数据库 时间:
2021-04-01 13:48:10
阅读次数:
0
package main import ( "fmt" "time" ) func main() { s := NewServices( SetName("peter"), SetTimeout(time.Second*5), ) fmt.Println("name:", s.conf.Name) ...
分类:
其他好文 时间:
2021-03-31 12:16:53
阅读次数:
0
'''文本配置文件:相当于一个字典,[DEFAULT][bitbucket.org][topsecret.server.com]都是key值,所对应的数据是字典格式''' import configparser config = configparser.ConfigParser() # 生成文档 ...
分类:
其他好文 时间:
2021-03-31 11:46:17
阅读次数:
0
文档链接 https://docs.ansible.com/ansible/latest/reference_appendices/config.html 配置文件 [defaults] inventory = /etc/ansible/hosts sudo_user=root remote_por ...
分类:
其他好文 时间:
2021-03-30 13:37:18
阅读次数:
0
可能造成这种报错的原因之一是 用户名或密码更新了,我们只要重新登录一下即可。 本地idea需要重新登录执行 git config --system --unset credential.helper 命令,重新出入账户密码。 ...
分类:
数据库 时间:
2021-03-30 13:35:08
阅读次数:
0