上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 22 下一页
摘要: 安装rpm源 yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-ppc64le/pgdg-redhat-repo-latest.noarch.rpm 安装客户端工具包 yum install postgre 阅读全文
posted @ 2020-07-20 10:31 幸福在靠近 阅读(638) 评论(0) 推荐(0) 编辑
摘要: 使用yum命令添加PostgreSQL软件源 yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm 使用yum命令安装Post 阅读全文
posted @ 2020-07-20 09:38 幸福在靠近 阅读(1499) 评论(0) 推荐(1) 编辑
摘要: 安装 uuid_generate_v4() 扩展函数 create extension "uuid-ossp" 检验函数 select replace(uuid_generate_v1()::text,'-','') 阅读全文
posted @ 2020-07-15 08:46 幸福在靠近 阅读(1094) 评论(0) 推荐(0) 编辑
摘要: 1、sql DROP TABLE IF EXISTS `demo`; CREATE TABLE `demo` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_gen 阅读全文
posted @ 2020-06-24 14:27 幸福在靠近 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 镜像下载 docker search svn docker pull docker.io/garethflowers/svn-server docker images 运行容器 docker run -v /opt/data/svn/repo:/var/opt/svn --name svn-serv 阅读全文
posted @ 2020-06-12 14:57 幸福在靠近 阅读(2918) 评论(0) 推荐(0) 编辑
摘要: 一、下载windows版本的Redis 官网下载地址:http://redis.io/download github下载地址:https://github.com/MSOpenTech/redis/tags百度网盘:https://pan.baidu.com/s/1i6Pu1F3 二、安装Redis 阅读全文
posted @ 2020-05-27 08:33 幸福在靠近 阅读(317) 评论(0) 推荐(0) 编辑
摘要: package com.stt.dateChange; import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date; import org.apache.commons.logging.Log;i 阅读全文
posted @ 2020-05-25 19:14 幸福在靠近 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 一、初识VueX 1.1 关于VueX VueX是适用于在Vue项目开发时使用的状态管理工具。试想一下,如果在一个项目开发中频繁的使用组件传参的方式来同步data中的值,一旦项目变得很庞大,管理和维护这些值将是相当棘手的工作。为此,Vue为这些被多个组件频繁使用的值提供了一个统一管理的工具——Vue 阅读全文
posted @ 2020-04-28 14:27 幸福在靠近 阅读(593) 评论(0) 推荐(0) 编辑
摘要: 1、排序 import lombok.Data; import java.util.*; import java.util.stream.Collectors; public class StreamStudy { public static void main(String[] args) { U 阅读全文
posted @ 2020-04-27 11:53 幸福在靠近 阅读(698) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-26 20:18 幸福在靠近 阅读(4820) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 22 下一页