摘要:
十分钟看完Spring中Bean的生命周期,太简单了 https://www.toutiao.com/i6820677605851660811/ Spring InitializingBean init-method @PostConstruct 执行顺序 https://www.cnblogs.c 阅读全文
摘要:
import static org.apache.kafka.clients.CommonClientConfigs.SECURITY_PROTOCOL_CONFIG; import static org.apache.kafka.clients.producer.ProducerConfig.BA 阅读全文
摘要:
只删除当前目录下(第一级目录)文件类型的 find /opt/xxx -maxdepth 1 -type f -exec rm -fv {} \; 删除除了logs(文件或文件夹)以外的所有 cd /opt/xxx && ls | grep -v logs | xargs rm -rvf 阅读全文
摘要:
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= 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
git push origin HEAD:task/xxx-test-local git push的一般形式为 git push <远程主机名> <本地分支名> <远程分支名> ,例如 git push origin master:refs/for/master ,即是将本地的master分支推送到 阅读全文
摘要:
https://stackoverflow.com/questions/26105061/spring-boot-without-the-web-server/28565277 1. spring.main.web-application-type=none2. public static void 阅读全文
摘要:
https://zhuanlan.zhihu.com/p/62382615 循环依赖发生的时机 Bean 实例化主要分为三步,如图: 问题出现在:第一步和第二步的过程中,也就是填充属性 / 方法的过程中 Spring 如何解决的 Spring 为了解决单例的循环依赖问题,使用了 三级缓存 ,递归调用 阅读全文