摘要: Keyword Sample JPQL snippet And findByLastnameAndFirstname … where x.lastname = ?1 and x.firstname = ?2 Or findByLastnameOrFirstname … where x.lastnam 阅读全文
posted @ 2022-06-07 22:16 Arborblog 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 方法1 org.springframework.beans.BeanUtils.copyProperties(父类对象,子类对象); package com.***.test11111; //Arbor 2022/6/7 public class Dog { String name; int age 阅读全文
posted @ 2022-06-07 15:18 Arborblog 阅读(424) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/2587651/202206/2587651-20220607012259233-1572371936.png) 阅读全文
posted @ 2022-06-07 01:23 Arborblog 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-06-07 00:57 Arborblog 阅读(22) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-core</artifactId> </dependency> querydsl翻译:快速dsl 是Hibernate框架的实现 一个repository的实现类 阅读全文
posted @ 2022-06-07 00:27 Arborblog 阅读(36) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/2587651/202206/2587651-20220604001800626-751806203.png) ![](https://img2022.cnblogs.com/blog/2587651/202206/2587651-20220604001727012-404912220.png) 阅读全文
posted @ 2022-06-04 00:18 Arborblog 阅读(60) 评论(0) 推荐(0) 编辑
摘要: https://repo.spring.io/ui/native/release/org/springframework/spring/ 下载dist版 阅读全文
posted @ 2022-06-04 00:10 Arborblog 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 常规赛将于10月19日至次年4月10日举行,附加赛将于2022年4月12日至15日举行,季后赛将于2022年4月16日举行,如有必要,总决赛将于2022年6月2日举行。新赛季的NBA选秀定于2022年6月23日。 https://www.nba.com/games https://china.nba 阅读全文
posted @ 2022-05-27 22:16 Arborblog 阅读(1514) 评论(0) 推荐(0) 编辑
摘要: 两种常用类型的cookie 1.临时Cookie(会话Session Cookie) 不设置过期时间,则表示这个cookie生命周期为浏览器会话期间,只要关闭浏览器窗口,cookie就消失了。 这种生命期为浏览会话期的cookie被称为会话cookie。会话cookie一般不保存在硬盘上而是保存在内 阅读全文
posted @ 2022-05-26 01:20 Arborblog 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Hibernate会为每一个entity缓存它的INSERT/SELECT/UPDATE SQL语句。这样我们在保存、查找、更新entity时,不需要再去动态的计算这些SQL。 然而,当我们使用dynamic-insert、dynamic-update时, Hibernate都要重新计算一次相应的S 阅读全文
posted @ 2022-05-24 18:58 Arborblog 阅读(408) 评论(0) 推荐(0) 编辑