摘要: Linux yum安装MySQL5.7 一、安装配置MySQL的yum源 1 2 3 4 5 6 7 8 9 10 # 安装MySQL的yum源,下面是RHEL6系列的下载地址 rpm -Uvh http://dev.mysql.com/get/mysql-community-release-el6 阅读全文
posted @ 2020-09-25 07:30 simplelifezp 阅读(414) 评论(0) 推荐(0)
摘要: Linux下Redis的安装和部署 安装: 1.获取redis资源 wget http://download.redis.io/releases/redis-4.0.8.tar.gz 2.解压 tar xzvf redis-4.0.8.tar.gz 3.安装 cd redis-4.0.8 make 阅读全文
posted @ 2020-09-25 07:26 simplelifezp 阅读(194) 评论(0) 推荐(0)
摘要: REDIS服务器搭建 阅读目录 系统环境 安装步骤 注意事项 参考资料 回到顶部 系统环境 操作系统:CentOS 6.9 redis版本:redis-4.0.2 回到顶部 安装步骤 1,安装预环境 运行以下命令安装预环境。 [root@redis02 redis-4.0.2]# yum -y in 阅读全文
posted @ 2020-09-25 07:24 simplelifezp 阅读(279) 评论(0) 推荐(0)
摘要: 【Linux】CentOS7下安装JDK详细过程 Linux上一般会安装Open JDK,关于OpenJDK和JDK的区别:http://www.cnblogs.com/sxdcgaq8080/p/7487369.html 下面开始安装步骤: 第一步 第一步 卸载系统自带的OpenJDK以及相关的j 阅读全文
posted @ 2020-09-25 07:22 simplelifezp 阅读(131) 评论(0) 推荐(0)
摘要: 【一】 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> 核心标签 <c:if <c:choose <c:when <c:otherwise <c:url 【二】 <%@ taglib uri="http://java. 阅读全文
posted @ 2020-09-24 18:07 simplelifezp 阅读(302) 评论(0) 推荐(0)
摘要: 这里是修真院前端小课堂,每篇分享文从【背景介绍】【知识剖析】【常见问题】【解决方案】【编码实战】【扩展思考】【更多讨论】【参考文献】八个方面深度解析前端知识/技能,本篇分享的是:【px、em、rem、%、vw、wh、vm等单位有什么区别?】 1.背景介绍传统的项目开发中,我们只会用到px、%、em这 阅读全文
posted @ 2020-09-24 18:02 simplelifezp 阅读(1134) 评论(0) 推荐(0)
摘要: 1、使用add的时候 Calendar calendar=Calendar.getInstance(); calendar.add(Calendar.MONTH,-1); SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); St 阅读全文
posted @ 2020-09-24 17:41 simplelifezp 阅读(227) 评论(0) 推荐(0)
摘要: import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors; int each_thread = 5000;#每个线程处理数据数int count = 500;#总数据量 ExecutorServ 阅读全文
posted @ 2020-09-24 17:23 simplelifezp 阅读(187) 评论(0) 推荐(0)
摘要: 在开发web程序的时候,有时我们需要得到用户是从什么页面连过来的,这就用到了referer。 它是http协议,所以任何能开发web程序的语言都可以实现,比如jsp中是: request.getHeader("referer"); php是$_SERVER['HTTP_REFERER']。其他的我就 阅读全文
posted @ 2020-09-24 17:10 simplelifezp 阅读(193) 评论(0) 推荐(0)
摘要: 原博客 (1)修改pom.xml文件,引入jar包 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation= 阅读全文
posted @ 2020-09-24 17:09 simplelifezp 阅读(190) 评论(0) 推荐(0)