09 2023 档案

摘要:红色:表示没有add; 绿色:表示没有commit; 习惯: 合并之前先Code Review: https://zhuanlan.zhihu.com/p/73809355 参考文章 【1】https://blog.csdn.net/lidazhou/article/details/84291641 阅读全文
posted @ 2023-09-17 13:44 先娶国王后取经 阅读(322) 评论(0) 推荐(0) 编辑
摘要:参考文章:https://blog.csdn.net/BThinker/article/details/104647492 阅读全文
posted @ 2023-09-17 13:43 先娶国王后取经 阅读(53) 评论(0) 推荐(0) 编辑
摘要:// 获取 ActionForm 表单数据 UserActionForm uForm = (UserActionForm) form; // 构造一个User对象 User user = new User(); // 赋值(部分 ==》 整体) BeanUtils.copyProperties(uF 阅读全文
posted @ 2023-09-16 17:50 先娶国王后取经 阅读(36) 评论(0) 推荐(0) 编辑
摘要:PageInfo(github) 导入依赖 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.4.2</ve 阅读全文
posted @ 2023-09-16 17:22 先娶国王后取经 阅读(13) 评论(0) 推荐(0) 编辑
摘要:本质:是否提供并使用了改变自身方法的引用类型 参考文章:https://developer.aliyun.com/article/378196 阅读全文
posted @ 2023-09-16 15:06 先娶国王后取经 阅读(4) 评论(0) 推荐(0) 编辑
摘要:转载文章:https://developer.aliyun.com/article/339309 阅读全文
posted @ 2023-09-16 14:43 先娶国王后取经 阅读(10) 评论(0) 推荐(0) 编辑
摘要:@Autowired是根据类型进行注入,容器中只能有一个该类型的实例; @Resource是根据名称进行注入,容器中一种类型可以存在多个实例; @Bean("defaultKafka") public KafkaTemplate<Integer, String> defaultKafkaTempla 阅读全文
posted @ 2023-09-15 15:11 先娶国王后取经 阅读(4) 评论(0) 推荐(0) 编辑
摘要:坑 1、在windows里安装的kafka相关命令一定要是bin\windows目录下 // 正确示例 .\bin\windows\kafka-topics.bat --bootstrap-server localhost:9092 --list // 错误示例 .\bin\kafka-topics 阅读全文
posted @ 2023-09-14 17:40 先娶国王后取经 阅读(87) 评论(0) 推荐(0) 编辑
摘要:1、一般来说@RequestParam是从url中获取参数,配合GET请求,键值对类型;@RequestBody是从请求体中获取参数,配合POST请求; 参考文章:https://blog.csdn.net/han1140521792/article/details/97919012 https:/ 阅读全文
posted @ 2023-09-11 21:14 先娶国王后取经 阅读(6) 评论(0) 推荐(0) 编辑
摘要:1、查看项目目录,是否存在.git文件夹(若存在则删除) 2、创建一个新的git仓库 3、add后文件会变绿 4、commit代码 5、设置远程仓库地址 6、推送代码至远程仓库(一般来说都要新pull再push,此处是因为我们远程仓库为空) 阅读全文
posted @ 2023-09-11 15:28 先娶国王后取经 阅读(346) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示