09 2019 档案

摘要:https://www.cnblogs.com/fmjava/p/11576410.html 阅读全文
posted @ 2019-09-24 09:47 紫枫夜羽 阅读(93) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/supermao1013/article/details/83153390 下载docker-quick-start文件 下载地址:https://github.com/ctripcorp/apollo/tree/master/scripts/docker 阅读全文
posted @ 2019-09-23 14:55 紫枫夜羽 阅读(240) 评论(0) 推荐(0) 编辑
摘要:1.下载一个nexus3的镜像 docker pull sonatype/nexus3 2.将容器内部/var/nexus-data挂载到主机/root/nexus-data目录。 docker run -d -p 8081:8081 --name nexus -v /root/nexus-data 阅读全文
posted @ 2019-09-23 14:39 紫枫夜羽 阅读(353) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/IT_hejinrong/article/details/89921048 注意打开linux端口 iptables -A INPUT -ptcp --dport 8090 -j ACCEPT 阅读全文
posted @ 2019-09-23 10:12 紫枫夜羽 阅读(147) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/shijiujiu33/article/details/90540031 阅读全文
posted @ 2019-09-23 09:46 紫枫夜羽 阅读(252) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/f8746b81d65d 阅读全文
posted @ 2019-09-19 15:30 紫枫夜羽 阅读(140) 评论(0) 推荐(0) 编辑
摘要:1.创建一个springboot项目 2.引用依赖,引用log4j是因为需要用到 <!--druid--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.10</vers 阅读全文
posted @ 2019-09-18 17:43 紫枫夜羽 阅读(431) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/xuyiqing/p/10851859.html https://www.cnblogs.com/leeSmall/p/8721556.html https://www.cnblogs.com/linyufeng/p/9885645.html 阅读全文
posted @ 2019-09-18 10:19 紫枫夜羽 阅读(133) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/fansili/article/details/78664267 阅读全文
posted @ 2019-09-18 10:17 紫枫夜羽 阅读(142) 评论(0) 推荐(0) 编辑
摘要:1.配置JDK,maven 1).在jenkins页面选择 “ 系统管理 ” >>“全局工具配置” 2).选择新增JDK,别名自定义输入,把自动安装取消, jenkins会自动安装JDK,输入命令 docker exec -it 容器ID /bin/bash , 进入容器,输入命令 echo $JA 阅读全文
posted @ 2019-09-12 14:50 紫枫夜羽 阅读(120) 评论(0) 推荐(0) 编辑
摘要:1.添加pom <!--swagger--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> </dependency> <dependency> <groupId>io 阅读全文
posted @ 2019-09-09 15:55 紫枫夜羽 阅读(173) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/lzhdonald/p/11490933.html 阅读全文
posted @ 2019-09-09 15:47 紫枫夜羽 阅读(257) 评论(0) 推荐(0) 编辑
摘要:public static boolean is2Power3(int num) { return (num & num - 1) == 0; } 阅读全文
posted @ 2019-09-09 15:43 紫枫夜羽 阅读(167) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/kevin-yang123/p/9916572.html https://blog.csdn.net/realjh/article/details/82048492 查询端口是否开放 netstat -anlp | grep 端口号 1、开启防火墙 s 阅读全文
posted @ 2019-09-09 15:31 紫枫夜羽 阅读(1167) 评论(0) 推荐(0) 编辑