blinkfox / fenix

This is an extension library to the Spring Data JPA complex or dynamic SQL query. 这是一个比 MyBatis 更加强大的 Spring Data JPA 扩展库,为解决复杂动态 JPQL (或 SQL) 而生。https://blinkfox.github.io/fenix
https://blinkfox.github.io/fenix
Apache License 2.0
346 stars 72 forks source link

修复在 debug 模式下同一个 namespace 多个 xml 文件无法正确获取 Fenix 节点的问题 #52

Closed imhansai closed 3 years ago

imhansai commented 3 years ago

未开启 debug 模式下,由于直接存储的是 fenixNode,问题不存在。 但是如果开启了 debug 模式,那么需要通过 URL 实时读取文件解析并获取 fenixNode,而 xmlUrlMap 的 value 为 单个的 URL,那么问题就复现了

主要是保证在开启了 debug 和未开启 debug 模式下的行为一致

测试的话,直接复用了之前的用例,通过在 com.blinkfox.fenix.repository.BlogRepositoryTest#init 方法中添加 myFenixConfig.setDebug(true); 来控制是否开启 debug 模式 并测试。