spring-data-jpa JpaEntityGraph 源码
spring-data-jpa JpaEntityGraph 代码
文件路径:/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/query/JpaEntityGraph.java
/*
* Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.jpa.repository.query;
import java.util.Arrays;
import java.util.List;
import org.springframework.data.jpa.repository.EntityGraph;
import org.springframework.data.jpa.repository.EntityGraph.EntityGraphType;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import org.springframework.util.StringUtils;
/**
* EntityGraph configuration for JPA 2.1 {@link EntityGraph}s.
*
* @author Thomas Darimont
* @author Mark Paluch
* @since 1.6
*/
public class JpaEntityGraph {
private static String[] EMPTY_ATTRIBUTE_PATHS = {};
private final String name;
private final EntityGraphType type;
private final List<String> attributePaths;
/**
* Creates an {@link JpaEntityGraph}.
*
* @param entityGraph must not be {@literal null}.
* @param nameFallback must not be {@literal null} or empty.
*/
public JpaEntityGraph(EntityGraph entityGraph, String nameFallback) {
this(StringUtils.hasText(entityGraph.value()) ? entityGraph.value() : nameFallback, entityGraph.type(), entityGraph
.attributePaths());
}
/**
* Creates an {@link JpaEntityGraph} with the given name, {@link EntityGraphType} and attribute paths.
*
* @param name must not be {@literal null} or empty.
* @param type must not be {@literal null}.
* @param attributePaths may be {@literal null}.
* @since 1.9
*/
public JpaEntityGraph(String name, EntityGraphType type, @Nullable String[] attributePaths) {
Assert.hasText(name, "The name of an EntityGraph must not be null or empty");
Assert.notNull(type, "FetchGraphType must not be null");
this.name = name;
this.type = type;
this.attributePaths = Arrays.asList(attributePaths == null ? EMPTY_ATTRIBUTE_PATHS : attributePaths);
}
/**
* Returns the name of the {@link EntityGraph} configuration to use.
*
* @return
*/
public String getName() {
return name;
}
/**
* Returns the {@link EntityGraphType} of the {@link EntityGraph} to use.
*
* @return
*/
public EntityGraphType getType() {
return type;
}
/**
* Returns the attribute node names to be used for this {@link JpaEntityGraph}.
*
* @return
* @since 1.9
*/
public List<String> getAttributePaths() {
return attributePaths;
}
/**
* Return {@literal true} if this {@link JpaEntityGraph} needs to be generated on-the-fly.
*
* @return
* @since 1.9
*/
public boolean isAdHocEntityGraph() {
return !attributePaths.isEmpty();
}
@Override
public String toString() {
return "JpaEntityGraph [name=" + name + ", type=" + type + ", attributePaths=" + attributePaths.toString() + "]";
}
}
相关信息
相关文章
spring-data-jpa AbstractJpaQuery 源码
spring-data-jpa AbstractStringBasedJpaQuery 源码
spring-data-jpa BeanFactoryQueryRewriterProvider 源码
spring-data-jpa DeclaredQuery 源码
spring-data-jpa DefaultJpaEntityMetadata 源码
spring-data-jpa DefaultJpaQueryMethodFactory 源码
spring-data-jpa DefaultQueryEnhancer 源码
spring-data-jpa DelegatingQueryRewriter 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦