02 2023 档案
jeecgboot新建子模块问题
摘要:jeecgboot新建子模块问题 新建子模块后 Controller 接口在 ShiroConfig 中配置了不需要权限访问,但是访问时仍然报错:token 失效 可能原因:新建子模块的包名不是 org.jeecg 作为前缀,导致 @Controller 注解不生效,没有扫描到该组件 解
阅读全文
requests基本使用
摘要:requests基本使用 官方文档:http://cn.python‐requests.org/zh_CN/latest/ 快速上手:http://cn.python‐requests.org/zh_CN/latest/user/quickstart.html 安装:pip instal
阅读全文
Linux上使用selenium报错:AttributeError: 'Service' object has no attribute 'process'
摘要:Linux上使用selenium报错:AttributeError: 'Service' object has no attribute 'process' Linux 上安装了谷歌浏览器及对应版本的浏览器驱动(chromedriver),执行如下代码: from selenium.webdri
阅读全文
Linux常用命令
摘要:Linux常用命令 df 查看磁盘空间使用情况 top 查看 cpu 使用情况 free 查看内存使用情况,-m:以 mb 为单位显示 ps -ef | grep 进程名称 查看进程 ps -ef | grep 进程名称 | grep -v grep | awk '{print "kill -9 "
阅读全文