摘要: 参考:https://www.cnblogs.com/jajian/p/8081640.html Sources:源代码存放的文件,蓝色。 Tests:设置测试代码存放的文件件,绿色。 Resources:一般对应着Sources文件,一般放配置文件,如:log4j.properties,appli 阅读全文
posted @ 2020-09-22 20:06 8394971 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1 select sysdate from dual;--2020-03-24 23:07:53 2 select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') as nowTime from dual; --日期转化为字符串 2020-03-24 23:08:1 阅读全文
posted @ 2020-03-24 23:52 8394971 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 点击 file > project structure 点击modules > 把 add content root 先删除再新建路径 阅读全文
posted @ 2020-03-24 02:25 8394971 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 时区错误,MySQL默认的时区是UTC时区,比北京时间晚8个小时。 所以要修改mysql的时长 在mysql的命令模式下,输入: set global time_zone='+8:00'; 再次连接成功 阅读全文
posted @ 2020-03-05 00:09 8394971 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 CBO(cost -based optimizer)实际上是对执行目标sql所要耗费的I/O、 CPU和网络资源的一个估算值 cardinallity 集合包含的记录数 修改密码 C:\Documents and Settings\Administrator>sqlplus / as 阅读全文
posted @ 2020-02-19 11:46 8394971 阅读(95) 评论(0) 推荐(0) 编辑
摘要: scrapy 1.7.3中文文档 https://www.osgeo.cn/scrapy/ 选择器 CSS XPATH 交互式测试 : scrapy shell ”https://docs.scrapy.org/en/latest/_static/selectors-sample1.html” 阅读全文
posted @ 2019-12-11 00:58 8394971 阅读(438) 评论(0) 推荐(0) 编辑
摘要: ubuntu上安装mysql非常简单只需要几条命令就可以完成。 1. sudo apt-get install mysql-server 2. apt-get isntall mysql-client 3. sudo apt-get install libmysqlclient-dev 1. sud 阅读全文
posted @ 2018-11-10 14:24 8394971 阅读(2073) 评论(0) 推荐(0) 编辑
摘要: 遍历map reflect struct with struct 看好函数是不是传的指针。 传的指针用不了fieldbyname 阅读全文
posted @ 2018-10-26 17:50 8394971 阅读(105) 评论(0) 推荐(0) 编辑
摘要: https://studygolang.com/articles/10797 转安装golang.org/x/net其实网上有很多的文章,但总的归来是有两种: 方法一: 为了使包的导入方式不变,我们需要在src目录下面构造目录结构 $mkdir -p $GOPATH/src/golang.org/x 阅读全文
posted @ 2018-10-17 00:59 8394971 阅读(8) 评论(0) 推荐(0) 编辑
摘要: docker search learn/tutorial 搜索镜像 docker pull learn/tutorial 下载镜像 docker run learn/tutorial echo "helloworld" 允许镜像 docker run learn/tutorial apt-get i 阅读全文
posted @ 2018-10-16 14:41 8394971 阅读(188) 评论(0) 推荐(0) 编辑