Spring data结合QueryDsl查询Mongo的customize方法未加载的一个坑

最近做的产品基于spring boot, mongo进行开发,由于前端需要进行比较复杂的查询,因此引入了dsl相关包,版本信息如下:

com.querydsl:querydsl-mongodb:jar:4.1.4,
org.springframework.boot:spring-boot-devtools:jar:1.4.1.RELEASE,
 org.springframework:spring-context-support:jar:4.3.3.RELEASE

并定义了dsl相关的接口,如下所示:

public interface VipRepository extends CrudRepository<Vip,   String>, QueryDslPredicateExecutor<Vip>,       QuerydslBinderCustomizer<Vip>
            , MongoRepository<Vip, String>{
  Override
    default public void customize(QuerydslBindings bindings,  Vip root) {
        log.debug ("[VipRepository]from customize");
        bindings.bind (String.class)
                .first ((StringPath path, String value) -> path.containsIgnoreCase (value));
    }
}

Resource中注入该dao:

@RestController
@RequestMapping("/v1/vip")
public class VipResource {

    private final Logger log = LoggerFactory.getLogger (VipResource.class);

    @Inject
    private VipRepository vipRepository;

@RequestMapping(value = "/vip/list", method = RequestMethod.GET,
            produces = MediaType.APPLICATION_JSON_VALUE)
    @Timed
    @Secured(AuthoritiesConstants.ADMIN)
    public ResponseEntity<List<Vip>> listVip(@QuerydslPredicate(root =
            Vip.class) Predicate predicate,
                                                               Pageable pageable) throws
            URISyntaxException {
        log.debug ("[viplist]");
        Page<Vip> page = vipRepository.findAll (predicate, pageable);
        log.debug ("[listSimMonthGprs] page total elements: {}", page.getTotalElements ());
        HttpHeaders headers = PaginationUtil.generatePaginationHttpHeaders (page,
                "/v1/vip/list");
        return new ResponseEntity<> (results, headers, HttpStatus.OK);
    }
...

但在测试中发现,在调用/vip/list时,

有时会调用VipRepository中的customize方法,有时却不会。

实在奇怪。尝试在VipRepository添加日志,或者加断点调试,添加serializable接口都是一样的效果,只有spring context启动后第一次调用该接口加载不上,以后也都加载不上。
于是尝试从spring data,querydsl的源码进行调试。在未深入研究spring data和querydsl源码的情况下如何加断点呢?观察到在customize方法的参数中引入有QuerydslBindings这个绑定接口,结合之前对querydsl的研究,该接口完成domain类和Q类之前的参数绑定,于是利用IDE的功能找到该接口的实现类QuerydslBindingsFactory,该类源码如下:

public class QuerydslBindingsFactory implements ApplicationContextAware {
    private final EntityPathResolver entityPathResolver;
    private final Map<TypeInformation<?>, EntityPath<?>> entityPaths;
    private AutowireCapableBeanFactory beanFactory;
//该类cache了系统中所有的domain类与repository名称的键值对map
    private Repositories repositories;
    public QuerydslBindings createBindingsFor(Class<? extends QuerydslBinderCustomizer<?>> customizer,
            TypeInformation<?> domainType) {

        Assert.notNull(domainType, "Domain type must not be null!");

        EntityPath<?> path = verifyEntityPathPresent(domainType);

        QuerydslBindings bindings = new QuerydslBindings();
        findCustomizerForDomainType(customizer, domainType.getType()).customize(bindings, path);

        return bindings;
    }

    /**
     * Tries to detect a Querydsl query type for the given domain type candidate via the configured
     * {@link EntityPathResolver}.
     * 
     * @param candidate must not be {@literal null}.
     * @throws IllegalStateException to indicate the query type can't be found and manual configuration is necessary.
     */
    private EntityPath<?> verifyEntityPathPresent(TypeInformation<?> candidate) {

        EntityPath<?> path = entityPaths.get(candidate);

        if (path != null) {
            return path;
        }

        Class<?> type = candidate.getType();

        try {
            path = entityPathResolver.createPath(type);
        } catch (IllegalArgumentException o_O) {
            throw new IllegalStateException(
                    String.format(INVALID_DOMAIN_TYPE, candidate.getType(), QuerydslPredicate.class.getSimpleName()), o_O);
        }

        entityPaths.put(candidate, path);
        return path;
    }

    /**
     * Obtains the {@link QuerydslBinderCustomizer} for the given domain type. Will inspect the given annotation for a
     * dedicatedly configured one or consider the domain types's repository.
     * 
     * @param annotation
     * @param domainType
     * @return
     */
    @SuppressWarnings({ "unchecked", "rawtypes" })
    private QuerydslBinderCustomizer<EntityPath<?>> findCustomizerForDomainType(
            Class<? extends QuerydslBinderCustomizer> customizer, Class<?> domainType) {

        if (customizer != null && !QuerydslBinderCustomizer.class.equals(customizer)) {
            return createQuerydslBinderCustomizer(customizer);
        }

        if (repositories != null && repositories.hasRepositoryFor(domainType)) {

            Object repository = repositories.getRepositoryFor(domainType);

            if (repository instanceof QuerydslBinderCustomizer) {
                return (QuerydslBinderCustomizer<EntityPath<?>>) repository;
            }
        }

        return NoOpCustomizer.INSTANCE;
    }

    /**
     * Obtains a {@link QuerydslBinderCustomizer} for the given type. Will try to obtain a bean from the
     * {@link org.springframework.beans.factory.BeanFactory} first or fall back to create a fresh instance through the
     * {@link org.springframework.beans.factory.BeanFactory} or finally falling back to a plain instantiation if no
     * {@link org.springframework.beans.factory.BeanFactory} is present.
     * 
     * @param type must not be {@literal null}.
     * @return
     */
    @SuppressWarnings({ "unchecked", "rawtypes" })
    private QuerydslBinderCustomizer<EntityPath<?>> createQuerydslBinderCustomizer(
            Class<? extends QuerydslBinderCustomizer> type) {

        if (beanFactory == null) {
            return BeanUtils.instantiateClass(type);
        }

        try {
            return beanFactory.getBean(type);
        } catch (NoSuchBeanDefinitionException e) {
            return beanFactory.createBean(type);
        }
    }
/**
*
**/
    private static enum NoOpCustomizer implements QuerydslBinderCustomizer<EntityPath<?>> {
        INSTANCE;
        @Override
        public void customize(QuerydslBindings bindings, EntityPath<?> root) {}
    }
}

This class will be invoked before entering resource method. It is charge of generating predicate instance from request parameters.
At first, calling createBindingsFor method. In the method, invoking verifyEntityPathPresent to get path. Then call findCustomizerForDomainType to check if dsl repository exists.
Pay attention to this sentence:

Object repository = repositories.getRepositoryFor(domainType);

This sentence gets repository object according to domainType. When using Vip to query, I found it return another repository for Vip not DSL repository.

到这个地方,大家就比较清楚原因了:因为系统中针对同一个domain定了两个repository,而spring在加载时使用domain class作为key,repository name作为值,只能随机cache一个repository,这也是有时可以调用到customize,而有时不可以的原因。

找到原因后,该问题就很好解决了,把两个repository接口融合到一起即可。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,647评论 18 139
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,801评论 6 342
  • 文章作者:Tyan博客:noahsnail.com 2.Introduction to the Spring Fr...
    SnailTyan阅读 5,388评论 7 56
  • 3.1. 核心概念 CrudRepository包含增删查改基础功能 PagingAndSortingReposi...
    titvax阅读 1,749评论 0 2
  • 他是我在高中时结识的一个人,那时候我高一,他留级到我们班,一开始很不合,还打过一架,后来因为有些事让我们成为了盆友...
    MC灬浅墨阅读 149评论 0 1