摘要:
1. MyBatis映射问题 执行计算过程中出现错误,错误消息:Mapped Statements collection does not contain value for... 问题原因: configure.xml文件中未配置对应路径。 2. java: Annotation processi 阅读全文
摘要:
防锁屏.vbs 1 ' 先定义一个Shell对象 2 Set WshShell = WScript.CreateObject("WScript.Shell") 3 4 WScript.Sleep 5000 5 wshShell.SendKeys "{NUMLOCK}" 6 WScript.Sleep 阅读全文
摘要:
1.基础操作 初始化本地代码仓库 git init Clone代码 git clone 提交代码 git add . git commit -m "commit comments" git push origin branchname 更新本地代码 git pull git update 代码强制回 阅读全文
摘要:
创建用户: CREATE USER 'username'@'%' IDENTIFIED WITH mysql_native_password BY 'password'; 创建数据库: CREATE DATABASE databasename; 赋权: grant all on databasena 阅读全文
摘要:
有天Dean突然问我说,你看这个Excel,只要输入R和Q就能出现√和×的选框,它是怎么做到的? 这个操作勾起了我的兴趣,于是求助百度,发现了一组很有意思的字体:Wingdings。 已知Wingdings家族包括 Wingdings、Wingdings 2和Wingdings 3,不同字体下不同的 阅读全文
摘要:
背景:旧版Gitlab存在安全漏洞,需要升级到安全版本,由于在用版本较老,需要跨大版本进行升级,本章记录了升级后代码迁移踩过的一些坑。 1. 绕开公司网络限制 Gitlab安装有两种途径,比较通用的是在服务器上直接下载 (代码引用自官网:https://about.gitlab.cn/install 阅读全文