上一页 1 ··· 106 107 108 109 110 111 112 113 114 ··· 342 下一页
摘要: 2.1.1 Installation If you are using Maven just add the following dependency to your pom.xml: <dependency> <groupId>org.mybatis</groupId> <artifactId>m 阅读全文
posted @ 2021-12-22 15:30 emanlee 阅读(70) 评论(0) 推荐(0)
摘要: 最终解决方法如下: 修改配置 settings.xml 添加镜像 <mirror> <id>alimaven</id> <mirrorOf>*</mirrorOf> <url>https://maven.aliyun.com/repository/central</url></mirror> IDE 阅读全文
posted @ 2021-12-21 19:45 emanlee 阅读(4584) 评论(0) 推荐(0)
摘要: (1)、IDEA中的Project可以被理解成当前工作空间,而每一个Module就是这个工作空间里的工作项目 (2)、一个Project中可以定义多个Module,Project与各个Module之间属于父子关系,各个Module之间则属于兄弟关系 IntelliJ系中的 Project 相当于Ec 阅读全文
posted @ 2021-12-21 19:21 emanlee 阅读(1726) 评论(0) 推荐(0)
摘要: Oracle 11g 48核 32核 windows 2008 r2 64 oracle 11g版本,11.2.0.4可以支持超过36个CPU。 减少CPU数量: 阅读全文
posted @ 2021-12-17 20:41 emanlee 阅读(564) 评论(0) 推荐(0)
摘要: REF https://www.zhihu.com/question/51745620 import matplotlib.pyplot as plt fig = plt.figure(1) ax1 = fig.add_subplot(211) ax2 = fig.add_subplot(212) 阅读全文
posted @ 2021-12-17 15:54 emanlee 阅读(744) 评论(0) 推荐(0)
摘要: REF http://blog.itpub.net/23556054/viewspace-1115506/ 查看 oracle 数据库是否启动: 一、LINUX: 1、用 ps -ef|grep ora 查看,是否有oracle的进程,linux下还可以用ipcs查看 2、查看监听的方法 cd /o 阅读全文
posted @ 2021-12-17 11:13 emanlee 阅读(933) 评论(0) 推荐(0)
摘要: Run菜单,选择‘’编辑配置‘, 每个py文件单独做以下的设置: 勾选 Run with Python Console 执行脚本,可以看到现在脚本运行在Python Console中,而不是通常的Run下运行了,现在我们就可以像IDLE一样,程序运行结束后,直接在Console输入命令,查看变量的值 阅读全文
posted @ 2021-12-16 19:44 emanlee 阅读(2502) 评论(0) 推荐(0)
摘要: 【 REF:https://blog.csdn.net/solaris_navi/article/details/3589256 】 要查找和替换的项目的通配符如果要查找:任意单个字符键入 ?例如,s?t 可查找“sat”和“set”。 任意字符串键入 *例如,s*d 可查找“sad”和“start 阅读全文
posted @ 2021-12-06 21:40 emanlee 阅读(763) 评论(0) 推荐(0)
摘要: beautifulsoup通过id获取指定元素内容 bs.find('th', id='DetailTilte') 通过class 查找 soup.find_all('span', class_='item_hot_topic_title') soup.find(class_ ='primaryco 阅读全文
posted @ 2021-12-05 20:46 emanlee 阅读(65) 评论(0) 推荐(0)
摘要: 解决办法: 1.安装 pip install lxml pip install html_parser 2.将 BeautifulSoup(html,'html.parser') 改为 BeautifulSoup(html,'lxml') , 或 反之 阅读全文
posted @ 2021-12-05 19:44 emanlee 阅读(620) 评论(0) 推荐(0)
上一页 1 ··· 106 107 108 109 110 111 112 113 114 ··· 342 下一页