上一页 1 2 3 4 5 6 7 ··· 24 下一页
摘要: 结论: 对于想要指定特定分支进行拉取,最好的四种没有二义性的写法是: refs/heads/<branchName> refs/remotes/<remoteRepoName>/<branchName> refs/tags/<tagName> <commitId> 最近在使用Jenkins拉取Git 阅读全文
posted @ 2021-08-06 18:43 748573200000 阅读(854) 评论(0) 推荐(0)
摘要: java html转图片 推荐一个好用的图形音频库:https://gitee.com/liuyueyi/quick-media 1.安装phantomjs windows参考: phantomjs安装步骤 mac和linux # 1. 下载 ## mac 系统 wget https://bitbu 阅读全文
posted @ 2021-07-29 15:16 748573200000 阅读(831) 评论(0) 推荐(0)
摘要: github免密码更新 ###使用Git提交代码遇到每次都需要输入用户名密码的情况,只要在本地生成一个认证文件即可免去输入。 ####在%HOME%目录,一般是C:\users\Administrator。或者是C:\Users\admin 使用git bash命令: touch .git-cred 阅读全文
posted @ 2021-05-19 16:04 748573200000 阅读(343) 评论(0) 推荐(0)
摘要: package com.simon.java8; import java.util.*; import java.util.stream.Collectors; public class LambdaTest { static List<Student> students = new ArrayLi 阅读全文
posted @ 2021-05-16 18:09 748573200000 阅读(58) 评论(0) 推荐(0)
摘要: 首先是代码,经典的双重锁写法 public class Singleton { private volatile static Singleton Instance; private Singleton(){} public static Singleton getInstance(){ if(In 阅读全文
posted @ 2021-04-08 09:43 748573200000 阅读(408) 评论(0) 推荐(0)
摘要: https://appleserialnumberinfo.com/Desktop/index.php 阅读全文
posted @ 2021-04-06 11:16 748573200000 阅读(986) 评论(0) 推荐(0)
摘要: 登录eureka管理中心 http://xxx.xxx.xx.xx:8080/ admin xxx 移除节点 curl -u admin:xxx -X DELETE http://ip:port/eureka/apps/服务名/注册名 curl -u admin:xxx -X DELETE http 阅读全文
posted @ 2021-03-15 15:41 748573200000 阅读(353) 评论(0) 推荐(0)
摘要: 相同点: @Resource的作用相当于@Autowired,均可标注在字段或属性的setter方法上。 不同点: 提供方:@Autowired是由org.springframework.beans.factory.annotation.Autowired提供,换句话说就是由Spring提供;@Re 阅读全文
posted @ 2021-03-13 22:00 748573200000 阅读(115) 评论(0) 推荐(0)
摘要: BeanFactoryPostProcessor 自定义spring进行注入 import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.BeanFactoryPos 阅读全文
posted @ 2021-03-13 19:44 748573200000 阅读(283) 评论(0) 推荐(0)
摘要: import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; import java.util.ArrayList; import java.util.List; import java.util.concurren 阅读全文
posted @ 2021-03-10 17:19 748573200000 阅读(535) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 24 下一页