上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 测试环境springboot md5加密结果不一致 linux启动的时候 java -Dfile.encoding=utf-8 -jar xxx.jar 即可。主要是编码不一致导致。 阅读全文
posted @ 2021-11-29 17:19 SimpleSmile 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/conquerorren/p/12982045.html刚好遇见这个问题,感觉很奇怪。多方查找,找到这个,给自己做保留。 IE11不支持Selenium 2.0,在什么情况下不支持呢?比如:通过WebDriver获取页面上的元素时,经常会捕获到这 阅读全文
posted @ 2021-09-22 15:50 SimpleSmile 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 这种很可能是字符集的问题,但是有时候我们不能去修改字符集 所以,可以对查询的结果加指定类型的操作 比如: select CAST(name as CHAR) as name from tab 强制将name 转换为字符串类型,来解决这样的问题。 分享使大家进步。 阅读全文
posted @ 2021-09-18 09:50 SimpleSmile 阅读(524) 评论(0) 推荐(0) 编辑
摘要: select * from system_organization where id = 1 union all select * from system_organization where id in ( select t3.id from ( select t1.id, if(find_in_ 阅读全文
posted @ 2021-09-04 08:43 SimpleSmile 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 如果在.vimrc中设置了自动缩进set autoindent,那么在插入模式下粘贴代码时,vim会自动为代码缩进,导致格式混乱。在/etc/.vimrc中文件将set autoindent进行注释。 如果在.vimrc中设置了自动缩进set autoindent,那么在插入模式下粘贴代码时,vim 阅读全文
posted @ 2021-07-27 14:50 SimpleSmile 阅读(730) 评论(0) 推荐(0) 编辑
摘要: ''' #利用python读取word文档,先读取段落 # pip install docx # pip3 install python-docx ''' #导入所需库 from docx import Document class docxOpraCls: myDoc = '' def openD 阅读全文
posted @ 2021-07-07 18:18 SimpleSmile 阅读(170) 评论(0) 推荐(0) 编辑
摘要: <div class="remind">&nbsp;</div> <div class="corner">&nbsp;</div> <style> .remind{ box-shadow: rgb(136, 136, 136) 0px 0px 6px; right: auto; left: 935p 阅读全文
posted @ 2021-07-06 08:19 SimpleSmile 阅读(400) 评论(0) 推荐(0) 编辑
摘要: server{listen 80;server_name localhost;location /test { root html; proxy_read_timeout 3600; index index.html index.html; proxy_set_header Host $host; 阅读全文
posted @ 2021-04-25 17:41 SimpleSmile 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 1.编写Dockerfile文件,vi Dockerfile #基本镜像 FROM centos #维护者信息 MAINTAINER zf #该命令将复制指定的 到容器中的 。 其中 可以是Dockerfile所在目录的一个相对路径;也可以是一个 URL;还可以是一个 tar 文件,复制进容器会自动 阅读全文
posted @ 2021-04-02 17:20 SimpleSmile 阅读(1060) 评论(0) 推荐(0) 编辑
摘要: 进入到 /usr/lib/systemd/system 目录下,编辑文件 nginx.service 1.cd /usr/lib/systemd/system/ 2.vi nginx.service 3. [Unit] Description=The nginx HTTP and reverse p 阅读全文
posted @ 2021-04-01 18:35 SimpleSmile 阅读(1146) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页