上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 72 下一页
摘要: 十分钟看完Spring中Bean的生命周期,太简单了 https://www.toutiao.com/i6820677605851660811/ Spring InitializingBean init-method @PostConstruct 执行顺序 https://www.cnblogs.c 阅读全文
posted @ 2020-03-21 17:57 tonggc1668 阅读(131) 评论(0) 推荐(0) 编辑
摘要: import static org.apache.kafka.clients.CommonClientConfigs.SECURITY_PROTOCOL_CONFIG; import static org.apache.kafka.clients.producer.ProducerConfig.BA 阅读全文
posted @ 2020-03-17 16:25 tonggc1668 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 只删除当前目录下(第一级目录)文件类型的 find /opt/xxx -maxdepth 1 -type f -exec rm -fv {} \; 删除除了logs(文件或文件夹)以外的所有 cd /opt/xxx && ls | grep -v logs | xargs rm -rvf 阅读全文
posted @ 2020-03-06 20:59 tonggc1668 阅读(248) 评论(0) 推荐(0) 编辑
摘要: sed -i '/username/d' /etc/sudoerssed -i '$d' /etc/sudoerssed -i "$ a lt32806 ALL=(ALL) ALL" /etc/sudoers chmod u+w /etc/sudoerssed -i 's/# %wheel ALL= 阅读全文
posted @ 2020-03-06 14:22 tonggc1668 阅读(269) 评论(0) 推荐(0) 编辑
摘要: scpg3 C:/app-report.jar username@hostname:/opt/report/app-report.jarscpg3 username@hostname:/opt/report/app-report.jar C:/app-report.jar sftpg3 userna 阅读全文
posted @ 2020-03-03 16:36 tonggc1668 阅读(935) 评论(0) 推荐(0) 编辑
摘要: echo -e "[NOT-CERTIFIED]\nname=NOT-CERTIFIED\nbaseurl=http://xxx/openopen/not-cert/rhel7-x86_64/latest/RPMS.all\nenabled=0\ngpgcheck=0" > /etc/yum.rep 阅读全文
posted @ 2020-03-02 11:38 tonggc1668 阅读(3301) 评论(0) 推荐(0) 编辑
摘要: set PATH=C:\Program Files\Java\jdk1.8.0_201\bin;@call kafka-consumer-groups.bat --bootstrap-server localhost:9092 --describe --group test-uat --comman 阅读全文
posted @ 2020-02-28 12:45 tonggc1668 阅读(187) 评论(0) 推荐(0) 编辑
摘要: git push origin HEAD:task/xxx-test-local git push的一般形式为 git push <远程主机名> <本地分支名> <远程分支名> ,例如 git push origin master:refs/for/master ,即是将本地的master分支推送到 阅读全文
posted @ 2020-01-15 15:23 tonggc1668 阅读(5756) 评论(1) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/26105061/spring-boot-without-the-web-server/28565277 1. spring.main.web-application-type=none2. public static void 阅读全文
posted @ 2020-01-14 15:24 tonggc1668 阅读(177) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/62382615 循环依赖发生的时机 Bean 实例化主要分为三步,如图: 问题出现在:第一步和第二步的过程中,也就是填充属性 / 方法的过程中 Spring 如何解决的 Spring 为了解决单例的循环依赖问题,使用了 三级缓存 ,递归调用 阅读全文
posted @ 2020-01-14 13:59 tonggc1668 阅读(175) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 72 下一页