1. 示意图 2. 基本语法 3. 参数细节说明 4. 案例 ...
分类:
系统相关 时间:
2020-01-09 21:05:46
阅读次数:
118
今天发生了一件事,中午去吃饭回来睡觉,午休结束后要写代码了,发现idea关闭了,平时一直开着,几乎不关闭的。这还不算邪门儿,打开后启动项目报了:The server time zone value‘XXXXXX' is unrecognized or represents...这样的错。 一百度是时 ...
分类:
数据库 时间:
2020-01-07 22:36:42
阅读次数:
197
一:安装zabbix服务端 1.部署准备 命令:iptables -F #关闭防火墙命令:systemctl stop firewalld #关闭防火墙 设置解析,自建yum源 命令:cd /etc/yum.repos.d/ 命令:curl -o /etc/yum.repos.d/CentOS-Ba ...
分类:
Web程序 时间:
2020-01-02 17:12:28
阅读次数:
110
1、导入依赖 1、1mysql 1、2mybatis 1、3web 1、4pagehelper <!-- spring boot 提供了一个插件 --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehel ...
分类:
编程语言 时间:
2020-01-01 19:00:02
阅读次数:
60
一. 简介 1. 什么是elasticsearch Elasticsearch是一个基于Lucene的实时的分布式搜索和分析 引擎。设计用于云计算中,能够达到实时搜索,稳定,可靠, 快速,安装使用方便。基于RESTful接口。 2. Lucene与ES的关系 1)Lucene只是一个库。想要使用它, ...
分类:
其他好文 时间:
2019-12-30 14:48:14
阅读次数:
82
了解一下时区 整个地球的时区总共划分为24个时区,它们是中时区(零时区)、东1-12区,西1-12区。在每个时区都有自己的本地时间,而且,在同一个时间,每个时区的本地时间会相差1-23个小时,不我们经常说的就是,我们中国这里是白天,而美国那里是夜晚。这就是时区的不同,形成的时间差。例如,英国伦敦的本 ...
分类:
Web程序 时间:
2019-12-30 14:16:31
阅读次数:
100
拉取centos7镜像: docker pull centos:7 启动容器: docker run -d -it --privileged --name=test centos:7 /usr/sbin/init 进入容器: docker exec -it test /bin/sh centos7安 ...
分类:
其他好文 时间:
2019-12-25 18:58:03
阅读次数:
67
第一步创建UserService package Services type IUserService interface { GetName(userid int) string } type UserService struct{} func (this UserService) GetName... ...
分类:
其他好文 时间:
2019-12-21 12:10:54
阅读次数:
174
dockerfile FROM centos:7# 基于centos7安装jdk8、tomcat8.5 MAINTAINER zhanghw <zhanghw94@163.com> # 安装unzip、vim、net-tools、bzip2RUN yum install -y unzip \ && ...
分类:
其他好文 时间:
2019-12-20 20:27:46
阅读次数:
110
实现redis缓存装饰器,路由函数 func GetTopicDetail(context *gin.Context) { tid:=context.Param("topic_id") topics:=Topics{} DBHelper.Find(&topics,tid)//从数据库取 contex... ...
分类:
其他好文 时间:
2019-12-20 01:10:16
阅读次数:
111