當(dāng)前位置:
首頁(yè) >
前端技术
> javascript
>内容正文
javascript
Spring Data JPA 从入门到精通~关键字列表
生活随笔
收集整理的這篇文章主要介紹了
Spring Data JPA 从入门到精通~关键字列表
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
注意除了 find 的前綴之外,我們查看 PartTree 的源碼,還有如下幾種前綴:
private static final String QUERY_PATTERN = "find|read|get|query|stream"; private static final String COUNT_PATTERN = "count"; private static final String EXISTS_PATTERN = "exists"; private static final String DELETE_PATTERN = "delete|remove";使用的時(shí)候要配合不同的返回結(jié)果進(jìn)行使用,例如:
interface UserRepository extends CrudRepository<User, Long> {long countByLastname(String lastname);//查詢總數(shù)long deleteByLastname(String lastname);//根據(jù)一個(gè)字段進(jìn)行刪除操作List<User> removeByLastname(String lastname); }大家也可以通過 Intellij IDEA :Edit -> Find -> Find In Path 工具查找到關(guān)鍵字對(duì)應(yīng)的枚舉在哪個(gè)類里面,如下:
?所以在這里作者介紹一工作中的小技巧,直接查看源碼就可以知道框架支持了哪些關(guān)鍵字。
Type 枚舉的關(guān)鍵源碼如下:
public static enum Type {BETWEEN(2, new String[]{"IsBetween", "Between"}),IS_NOT_NULL(0, new String[]{"IsNotNull", "NotNull"}),IS_NULL(0, new String[]{"IsNull", "Null"}),LESS_THAN(new String[]{"IsLessThan", "LessThan"}),LESS_THAN_EQUAL(new String[]{"IsLessThanEqual", "LessThanEqual"}),GREATER_THAN(new String[]{"IsGreaterThan", "GreaterThan"}),GREATER_THAN_EQUAL(new String[]{"IsGreaterThanEqual", "GreaterThanEqual"}),BEFORE(new String[]{"IsBefore", "Before"}),AFTER(new String[]{"IsAfter", "After"}),NOT_LIKE(new String[]{"IsNotLike", "NotLike"}),LIKE(new String[]{"IsLike", "Like"}),STARTING_WITH(new String[]{"IsStartingWith", "StartingWith", "StartsWith"}),ENDING_WITH(new String[]{"IsEndingWith", "EndingWith", "EndsWith"}),IS_NOT_EMPTY(0, new String[]{"IsNotEmpty", "NotEmpty"}),IS_EMPTY(0, new String[]{"IsEmpty", "Empty"}),NOT_CONTAINING(new String[]{"IsNotContaining", "NotContaining", "NotContains"}),CONTAINING(new String[]{"IsContaining", "Containing", "Contains"}),NOT_IN(new String[]{"IsNotIn", "NotIn"}),IN(new String[]{"IsIn", "In"}),NEAR(new String[]{"IsNear", "Near"}),WITHIN(new String[]{"IsWithin", "Within"}),REGEX(new String[]{"MatchesRegex", "Matches", "Regex"}),EXISTS(0, new String[]{"Exists"}),TRUE(0, new String[]{"IsTrue", "True"}),FALSE(0, new String[]{"IsFalse", "False"}),NEGATING_SIMPLE_PROPERTY(new String[]{"IsNot", "Not"}),SIMPLE_PROPERTY(new String[]{"Is", "Equals"}); ....}總結(jié)
以上是生活随笔為你收集整理的Spring Data JPA 从入门到精通~关键字列表的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Execution in the Kin
- 下一篇: Spring Data JPA 从入门到