上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 42 下一页
摘要: 之前用的系统盘总有内嵌软件,改用微PE比较纯净 最详细的从u盘制作到装最纯净最纯净系统的教程: https://jingyan.baidu.com/article/948f5924cfb1bcd80ef5f97b.html 下载: http://www.wepe.com.cn/download.ht 阅读全文
posted @ 2020-05-04 21:01 程序生(Codey) 阅读(292) 评论(0) 推荐(0) 编辑
摘要: python 判断是否为空NaN import math math.isnan(val) 或 import pandas as pd pd.isnull(val) math常用于数字,传字符串会报错,pd较为通用 Python获取当前时间及格式化 # 导入time模块 import time # 打 阅读全文
posted @ 2020-04-29 14:09 程序生(Codey) 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1.安装tushare前先安装lxml和pandas(我是win32下python3.4.0) 2.安装lxml,下载地址https://pypi.python.org/pypi/lxml/3.4.2 3.pandas,下载地址https://pypi.python.org/pypi/pandas 阅读全文
posted @ 2020-04-27 14:18 程序生(Codey) 阅读(891) 评论(0) 推荐(0) 编辑
摘要: 一、导入jar包 1、点击 File -> Project Structure(快捷键 Ctrl + Alt + Shift + s),点击Project Structure界面左侧的“Modules”如图: 2、在 “Dependencies” 标签界面下,点击右边绿色的 “+”号,选择第一个选项 阅读全文
posted @ 2020-04-22 14:07 程序生(Codey) 阅读(2506) 评论(0) 推荐(1) 编辑
摘要: 先安装tomcat:https://www.cnblogs.com/cxscode/p/12750274.html 1.idea添加一个tomcat配置 相关配置 启动可能遇到问题 Error running 'Tomcat 9.0.24': port out of range:-1 idea 部署 阅读全文
posted @ 2020-04-22 10:34 程序生(Codey) 阅读(1557) 评论(0) 推荐(0) 编辑
摘要: 地址:https://tomcat.apache.org/download-90.cgi 有zip和installer两种,这里选择用zip下载解压使用,也可以用安装包安装 安装:https://blog.csdn.net/InkingWT/article/details/83744236?dept 阅读全文
posted @ 2020-04-22 10:22 程序生(Codey) 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 解决idea控制台乱码 1.IDEA安装目录,将2个idea64.exe.vmoptions、idea.exe.vmoptions文件,追加:-Dfile.encoding=UTF-8 2.打开tomcat配置页面,Edit Configurations。 选择项目部署的tomcat,在配置项VM 阅读全文
posted @ 2020-04-22 10:14 程序生(Codey) 阅读(852) 评论(0) 推荐(0) 编辑
摘要: 1.maven命令 package,clean,install,compile命令 1.compile,编译命令,会在你的项目路径下生成一个target目录,在该目录中包含一个classes文件夹,里面全是生成的class文件及字节码文件。 2.package,这个命令会在你的项目路径下一个targ 阅读全文
posted @ 2020-04-22 10:06 程序生(Codey) 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1.Could not get a resource from the pool spring.redis.maxTotal=8 spring.redis.maxIdle=8 spring.redis.minIdle=1 spring.redis.testOnBorrow=true spring.r 阅读全文
posted @ 2020-04-22 10:04 程序生(Codey) 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1.com.alibaba.druid.pool.DruidDataSource : create connection error, url: jdbc:mysql:// 1)未开启远程操作权限 win+R->cmd进入登录自己的mysql: 输入命令:mysql -u root -p ****( 阅读全文
posted @ 2020-04-22 10:01 程序生(Codey) 阅读(230) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 42 下一页