上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 26 下一页

2020年3月18日

开发基本问题

摘要: Git的分支你们是怎么管理的? https://blog.csdn.net/ShuSheng0007/article/details/80791849 https://nvie.com/posts/a-successful-git-branching-model/ https://www.cnblo 阅读全文

posted @ 2020-03-18 17:15 滚动的蛋 阅读(183) 评论(0) 推荐(0)

2020年3月17日

同一个tomcat部署多个项目导致启动失败

摘要: 内容描述 在同一个tomcat部署多个打包成war包的项目导致启动失败,报错如下: 报错信息 Error starting ApplicationContext. To display the conditions report re-run your application with 'debug 阅读全文

posted @ 2020-03-17 12:44 滚动的蛋 阅读(761) 评论(0) 推荐(0)

2020年3月13日

SpringBoot 读取resource下的文件

摘要: 1、使用resourceUtil File file = ResourceUtils.getFile("classpath:config/city.config.json"); 2、注解,注入 public abstract class BaseController { @Value("classp 阅读全文

posted @ 2020-03-13 22:12 滚动的蛋 阅读(1486) 评论(0) 推荐(0)

Elasticsearch 基本概念

摘要: 1、Node(节点)(一般每一个节点对应一台服务器) 主节点、数据节点、协调节点、Ingest节点 节点,一个ES实例就是一个node,一个机器可以有多个实例,所以并不是说一台机器就是一个node,大多数情况下,每个node运行在一个独立的环境或者虚拟机上。 2、Shard(分片) 将要建立的索引分 阅读全文

posted @ 2020-03-13 14:27 滚动的蛋 阅读(226) 评论(0) 推荐(0)

2020年3月12日

Dockers 常用命令笔记

摘要: 1、拉取镜像 $ docker pull mysql:latest 2、查看已经下载的镜像 $ docker images 3、创建并运行容器 MSYQL为例子: $ docker run -itd --name mysql-test -p 3306:3306 -e MYSQL_ROOT_PASSW 阅读全文

posted @ 2020-03-12 16:53 滚动的蛋 阅读(254) 评论(0) 推荐(0)

pull access denied for frolvlad/alpine-oraclejdk8, repository does not exist or may require

摘要: 一、问题 Step 1/6 : FROM frolvlad/alpine-oraclejdk8:slimERROR: Service 'config-server' failed to build: pull access denied for frolvlad/alpine-oraclejdk8, 阅读全文

posted @ 2020-03-12 11:51 滚动的蛋 阅读(2226) 评论(0) 推荐(0)

2020年3月10日

git 创建一个指定版本的远程分支

摘要: 1、将代码克隆到本地 git clone https://code.aliyun.com/qykj/xxx.git 2、检出指定版本,一般是有问题的前一个版本 git checkout 08ed30d103e913f2faeccdbdbd9e099fecec939a 3、新建分支 git check 阅读全文

posted @ 2020-03-10 21:46 滚动的蛋 阅读(2299) 评论(0) 推荐(0)

MySQL—字符串拆分(含分隔符的字符串截取)

摘要: 一、字符串拆分: SUBSTRING_INDEX(str, delim, count) SUBSTRING_INDEX('a,b,c',',',1) #截取第一个逗号(,)号以前的字符串 SUBSTRING_INDEX('a,b,c',',',-1) #截取倒数第一个逗号(,)号以后的字符串 二、替 阅读全文

posted @ 2020-03-10 14:26 滚动的蛋 阅读(14946) 评论(0) 推荐(0)

2020年3月9日

Promis的更简单舒服的使用方式 ,配合Async/await 使用

摘要: Async/await There’s a special syntax to work with promises in a more comfortable fashion, called “async/await”. It’s surprisingly easy to understand a 阅读全文

posted @ 2020-03-09 15:07 滚动的蛋 阅读(323) 评论(0) 推荐(0)

2020年3月8日

node Windows 环境构建工具安装

摘要: npm install --global --production windows-build-tools 阅读全文

posted @ 2020-03-08 19:18 滚动的蛋 阅读(340) 评论(0) 推荐(0)

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 26 下一页

导航