摘要: 环境:windows10 ,jdk1.8,springboot <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-core</artifactId> <version>5.5.7</version></dependency> < 阅读全文
posted @ 2021-01-20 08:43 SimpleSmile 阅读(13356) 评论(0) 推荐(0)
摘要: 环境:centos 7 由于OpenSSL 拒绝服务漏洞(CVE-2020-1971) 需要将openssl进行升级 参考网站:https://jingyan.baidu.com/article/08b6a5916ecc5214a9092244.html 1.准备rpm包,从官网下载:http:// 阅读全文
posted @ 2021-01-12 08:50 SimpleSmile 阅读(2638) 评论(0) 推荐(0)
摘要: rpm -Uvh xxx.npm --nodeps --force 加上后面两句,可以覆盖当前版本,老换新也可以。 参考文档:https://www.cnblogs.com/ming-4/p/11700663.html 阅读全文
posted @ 2021-01-11 16:12 SimpleSmile 阅读(2077) 评论(0) 推荐(0)
摘要: 1.系统环境:CentOS Linux release 7.7.1908 (Core) 2.ssh 版本:OpenSSH_7.4p1, OpenSSL 1.0.2k-fips 26 Jan 2017 3.禁止scp 3.1 rpm -qa|grep openssh-* 3.2 yum remove 阅读全文
posted @ 2021-01-11 11:50 SimpleSmile 阅读(14937) 评论(2) 推荐(0)
摘要: 1.环境,本机电脑 windows10,虚拟机VM (centos 7.9.2009) 2.下载minikube,参考官网:https://minikube.sigs.k8s.io/docs/start/ 3.启动minikube先决条件,安装 kubectl,参考官网:https://kubern 阅读全文
posted @ 2021-01-10 10:09 SimpleSmile 阅读(587) 评论(0) 推荐(0)
摘要: 在pom.xml文件中,<build></build>标签内添加 <resources> <resource> <!-- 将resource 的配置文件加载进去--> <directory>src/main/resources</directory> <includes> <include>**/* 阅读全文
posted @ 2021-01-08 16:18 SimpleSmile 阅读(325) 评论(0) 推荐(0)
摘要: $(function(){ $('#tt').datagrid({ title:'Editable DataGrid', iconCls:'icon-edit', width:660, height:250, singleSelect:true, idField:'itemid', url:'dat 阅读全文
posted @ 2021-01-07 14:29 SimpleSmile 阅读(141) 评论(0) 推荐(0)
摘要: 1.问题描述: 将业务代码放在service层,执行saveOrUpdate()时,出现对象已经存在的异常。Exception in thread"main"org.hibernate.NonUniqueObjectException: a different object with the sam 阅读全文
posted @ 2021-01-06 09:52 SimpleSmile 阅读(659) 评论(0) 推荐(0)
摘要: 1.比如post表单,传body 形式非json格式 而是 username=admin&password=password ngx.req.read_body() local args = ngx.req.get_body_data() local asArr = split(args,"&") 阅读全文
posted @ 2021-01-05 09:40 SimpleSmile 阅读(210) 评论(0) 推荐(0)
摘要: 1.dvwa是一个开源用来测试sql注入的php网站 2.源码地址:https://github.com/digininja/DVWA 下载都在这里 3.下载dvwa,通过配置host可以下载相应资源文件(资源文件名 dvwa-master)( git clone https://github.co 阅读全文
posted @ 2021-01-04 17:50 SimpleSmile 阅读(268) 评论(0) 推荐(0)