摘要:
.box { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center; align-content: center; } 阅读全文
摘要:
{ "editor.colorScheme": "Default", "editor.fontSize": 14, "editor.fontFamily": "Consolas", "editor.fontFmyCHS": "微软雅黑 Light", "editor.insertSpaces": t 阅读全文
摘要:
base.css * { margin: 0; padding: 0; box-sizing: border-box; } body { font: 16px/1.5 sans-serif; color: #333; background-color: #fff; } li { list-style 阅读全文
摘要:
Code 坐标 <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>5.0.2.RELEASE</ver 阅读全文
摘要:
在线生成 https://cron.qqe2.com/ https://www.bejson.com/othertools/cron/ 阅读全文
摘要:
前提 服务器上,JDK >= 1.7 上传 & 解压 tar -zxvf apache-ZooKeeper-3.5.6-bin.tar.gz -C /opt/zookeeper/ 配置zoo.cfg 创建zkdata mkdir zkdata 创建zoo.cfg cd /opt/zooKeeper/ 阅读全文
摘要:
安装环境 - 系统环境:CentOS6.8 64bit - JDK版本:1.8.0_201 卸载OpenJDK -- 查看 [root@node01 ~]# rpm -qa | grep java tzdata-java-2016c-1.el6.noarch java-1.7.0-openjdk-1 阅读全文
摘要:
进入设置页面,看如下图:把 √ 都去掉! 阅读全文
摘要:
ZooKeeper Releases mirror site https://archive.apache.org/dist/zookeeper/ 阅读全文
摘要:
作用 一种管理依赖版本号 声明所依赖的jar包的版本号等信息 子项目再次引入此依赖jar包时则无需显式的列出版本号 只是依赖的声明,并不实现引入 好处 适应于:多个子项目引用同样的依赖,当升级时,只需要修改父工程的版本号即可! 示例 // 父工程 <dependencyManagement> <de 阅读全文