博主首页
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 44 下一页
摘要: candidates = candidates.filter { teamMemberRepository.findTeamMemberByAccount(it.id).find { it.isManager } == null } 阅读全文
posted @ 2022-05-13 14:20 笑~笑 阅读(522) 评论(0) 推荐(0) 编辑
摘要: idea还原到选中版本提交 idea还原选中提交 阅读全文
posted @ 2022-05-13 10:24 笑~笑 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 变基就是rebase操作 merge和rebase操作的区别 merge会有多条线。而“变基”只有一条蓝色的线(好像就这点不同了) 假设分支a和分支b 你在分支a上,你需要把分支b上的提交更新到你的分支上, 可以选中要更新的位置 ,变基; 就会把b分支上面的改动更新到a分支上 对应idea中的reb 阅读全文
posted @ 2022-05-13 09:50 笑~笑 阅读(541) 评论(0) 推荐(0) 编辑
摘要: @Component public class GlobalEntityHandler implements PostLoadEventListener { /** * 注册监听器 * @param entityEntryFactory */ public GlobalEntityHandler(E 阅读全文
posted @ 2022-05-13 08:54 笑~笑 阅读(58) 评论(0) 推荐(0) 编辑
摘要: @ToString.Exclude调用toString时忽略此字段 阅读全文
posted @ 2022-05-07 17:09 笑~笑 阅读(515) 评论(0) 推荐(0) 编辑
摘要: services.msc 阅读全文
posted @ 2022-05-05 08:55 笑~笑 阅读(28) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>com.aliyun.datahub</groupId> <artifactId>aliyun-sdk-datahub</artifactId> <version>2.17.1-public</version> <exclusions> <exclusio 阅读全文
posted @ 2022-04-29 13:59 笑~笑 阅读(919) 评论(0) 推荐(0) 编辑
摘要: List<String> ret = new ArrayList<>(); PathMatchingResourcePatternResolver pathMatchingResourcePatternResolver = new PathMatchingResourcePatternResolve 阅读全文
posted @ 2022-04-26 16:56 笑~笑 阅读(376) 评论(0) 推荐(0) 编辑
摘要: nginx在代理时,后端拿不到前段发过去的请求头信息,导致接口不通。(但是在本地是可以拿到的) 主要原因为nginx在做反向代理时,没有在请求时添加头部信息的配置。 解决方法 1、在nginx中添加相应配置,使其能够携带头部信息通信 server { listen 443 ssl; server_n 阅读全文
posted @ 2022-04-24 20:46 笑~笑 阅读(1108) 评论(0) 推荐(0) 编辑
摘要: 可以设置一个对象交给spring管理,然后运行期进行设值,后面就可以在使用的时候获取了 阅读全文
posted @ 2022-04-22 17:53 笑~笑 阅读(273) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 44 下一页