摘要: 尽管配置的是tomcat9,但默认使用tomcat6,而tomcat6不支持jdk1.8版本 这里就需要添加tomcat7-maven-plugin的插件 注意:如果你的版本是tomcat7-maven-plugin 2.0 的话,由于它不支持 jdk 1.8,所以把它换成 tomcat7-mave 阅读全文
posted @ 2019-06-26 20:38 crazy_python 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 以下命令都是在命令行中执行 第一步、安装 pipenv模块 第二步、cd 到虚拟环目录 第三步、pipenv shell进入虚拟环境 第四步、安装所需要的模块 阅读全文
posted @ 2019-05-07 19:31 crazy_python 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 打开Submine Text,找到Preferences -> Settings-User写入 "update_check":false, 阅读全文
posted @ 2019-05-02 18:29 crazy_python 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://www.cnblogs.com/wuzhiblog/p/vba_two.html 阅读全文
posted @ 2019-04-24 15:04 crazy_python 阅读(780) 评论(0) 推荐(0) 编辑
摘要: 转载自 https://www.cnblogs.com/wuzhiblog/p/VBA_Excel_Mysql.html,感谢原博主 本文主要涉及: 系统环境: Windows 10 Excel 2010 1. VBA连接MySQL前的环境配置 系统中必须先安装有MySQL服务,这个就不多说了。可以 阅读全文
posted @ 2019-04-24 14:52 crazy_python 阅读(1429) 评论(0) 推荐(0) 编辑
摘要: 文件名 & "【" & CStr(Format(Now, "yyyy-mm-dd hh-mm-ss")) & " " & "】" 阅读全文
posted @ 2019-04-21 10:56 crazy_python 阅读(1226) 评论(0) 推荐(0) 编辑
摘要: * 匹配任意个字符 ? 匹配一个字符 ~ 转义字符(后面跟 ~, *, ?, 表示符号本身) 阅读全文
posted @ 2019-04-21 09:41 crazy_python 阅读(3969) 评论(0) 推荐(0) 编辑
摘要: 参考: http://www.cnblogs.com/hkgov/p/7799078.html 阅读全文
posted @ 2019-04-21 09:09 crazy_python 阅读(3221) 评论(0) 推荐(0) 编辑
摘要: 可以在pip install 后面加上 -i 镜像url 模块名 其中镜像url有: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi. 阅读全文
posted @ 2019-04-21 09:05 crazy_python 阅读(266) 评论(0) 推荐(0) 编辑
摘要: Java标识符由字母,下划线,$符号和数字组成; 必须由字母,下划线或$开头,不能与关键字相同; 大小写敏感; 要做到见名知意; 阅读全文
posted @ 2019-04-19 20:32 crazy_python 阅读(110) 评论(0) 推荐(0) 编辑