上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: 在resources下新建META-INF包 创建名字叫做 spring.factories的文件 org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ com.xyarch.server.common.dataCodes. 阅读全文
posted @ 2021-12-15 22:10 这都没什么 阅读(178) 评论(0) 推荐(0) 编辑
摘要: public static <T> T getSearchData(Map<String, Object> params, Class<T> tClass) { try { ObjectMapper mapper = new ObjectMapper(); T searchData; Object 阅读全文
posted @ 2021-12-15 22:05 这都没什么 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 假设分支名称为oldName 想要修改为 newName 1.本地分支重命名(还没有推送到远程) git branch -m oldName newName 2.远程分支重命名 (已经推送远程-假设本地分支和远程对应分支名称相同) 重命名远程分支对应的本地分支 git branch -m oldNa 阅读全文
posted @ 2021-12-13 14:39 这都没什么 阅读(461) 评论(0) 推荐(0) 编辑
摘要: ####1 我们常用的日志log <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core --> <dependency> <groupId>org.apache.logging.log4j</group 阅读全文
posted @ 2021-11-21 20:04 这都没什么 阅读(1287) 评论(0) 推荐(1) 编辑
摘要: 查看kafka topic列表 ./kafka-topics.sh --zookeeper 127.0.0.1:2181 --list __consumer_offsets test 查看topic信息 ./kafka-topics.sh --zookeeper 127.0.0.1:2181 --t 阅读全文
posted @ 2021-11-21 09:45 这都没什么 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 原文:https://javadoop.com/post/spring-ioc name: spring-ioc title: Spring IOC 容器源码分析 date: 2021-11-20 22:38:07 tags: categories: open-source Spring 最重要的概 阅读全文
posted @ 2021-11-20 22:40 这都没什么 阅读(39) 评论(0) 推荐(0) 编辑
摘要: public class SerIncreaseUtils { /** * @param currNum 传入num值 * @return 返回一个8为的String,例00000001 */ public static String getSerID(long currNum) { // 八位流水 阅读全文
posted @ 2021-11-14 20:46 这都没什么 阅读(59) 评论(0) 推荐(0) 编辑
摘要: @Component public class GetBeanUtils implements ApplicationContextAware { private static ApplicationContext applicationContext = null; public static A 阅读全文
posted @ 2021-11-14 11:06 这都没什么 阅读(76) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_30059235/article/details/108562275 #####1. maven报错 因为是聚合工程,每个子模块的pom里面都有个 <parent> <groupId>com.xxx</groupId> <artifactId>xxx 阅读全文
posted @ 2021-07-17 13:53 这都没什么 阅读(1889) 评论(0) 推荐(0) 编辑
摘要: 删除本地分支 git branch -D feature-faultFlow 删除远程分支 git push origin --delete feature-faultFlow 阅读全文
posted @ 2021-07-01 10:18 这都没什么 阅读(40) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页