摘要: fatal: No configured push destination. Either specify the URL from the command-line or configure a remote repository using git remote add and then pus 阅读全文
posted @ 2022-04-29 21:07 创嗨 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 最新 | 2022年最适合自学的Java学习路线! 夏天的葡萄 夏天的葡萄 3年经验,Java设计与开发。 ​ 目录 收起 一、学习路线图说明 阶段一Java基础: 阶段二JavaWeb: 阶段三Java开发框架: 阶段四中间件&服务框架: 阶段五项目实战: 阶段六大厂面试专题: 二、Java基础 阅读全文
posted @ 2022-04-25 12:04 创嗨 阅读(983) 评论(0) 推荐(0) 编辑
摘要: 1.idea中Maven Helper插件 2.冲突的依赖,可以右键excute 掉低级的版本 阅读全文
posted @ 2022-04-25 11:49 创嗨 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 1.github中创建存放文件夹 2.在本地打开git的黑窗口 git clone 路径 把修改的放进去 git add . git commit -m "描述" git push -u (注:此操作目的是把本地仓库push到github上面)git push -u origin master有分支 阅读全文
posted @ 2022-04-20 22:00 创嗨 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 如何解决 java 某些属性不想被序列化 方法一 // 该属性不再被序列化和反序列化 private transient String name; 方法二 @JSONField(serialize = false)//不序列化到redis中,因为loginuser对象要存入reids中,然后redi 阅读全文
posted @ 2022-04-16 10:17 创嗨 阅读(844) 评论(0) 推荐(0) 编辑
摘要: mybatis复杂sql查询——多对一和一对多处理 sforeverd 于 2021-04-25 16:17:44 发布 180 收藏分类专栏: mybatis 文章标签: sql mysql mybatis版权 mybatis专栏收录该内容6 篇文章0 订阅订阅专栏以学生表(Student)和教师 阅读全文
posted @ 2022-04-14 17:08 创嗨 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 版本一: <!--<?xml version="1.0" encoding="UTF-8"?> <configuration scan="true" scanPeriod="60 seconds" debug="false"> &lt;!&ndash; scan: 当此属性设置为true时,配置文件 阅读全文
posted @ 2022-03-23 19:49 创嗨 阅读(2403) 评论(0) 推荐(0) 编辑
摘要: 小数这写成了 0 位 阅读全文
posted @ 2022-03-20 17:59 创嗨 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1.bootstrap.yml server: #项目端口号(boostrap.yml中配置后,可在application.yml中不配置) port: 7301 spring: application: # 应用名对应nacos配置中心的Data Id name: nacos-config-cli 阅读全文
posted @ 2022-03-14 20:17 创嗨 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 因为springboot#同一个项目中只能使用一个@FeignClient("hello-service"),开启就可以多个spring: main: allow-bean-definition-overriding: true 阅读全文
posted @ 2022-03-13 15:30 创嗨 阅读(200) 评论(0) 推荐(0) 编辑