troyzhxu / bean-searcher

🔥🔥🔥 A read-only ORM focusing on advanced query, naturally supports joined tables, and avoids DTO/VO conversion, making it possible to realize complex query in one line of code !
https://bs.zhxu.cn
Apache License 2.0
1.31k stars 148 forks source link

能支持vertx吗 #89

Open 444579807 opened 10 months ago

444579807 commented 10 months ago

什么时候能支持vertx

troyzhxu commented 10 months ago

实际上现在就能支持,只不过需要手动集成。目前还没有为 vertx 提供类似 bean-searcher-boot-stater 这样的包。 不过可以使用 SearcherBuilder 来快速构建一个 BeanSearcher 检索器,参考: https://bs.zhxu.cn/guide/latest/start.html#others

troyzhxu commented 10 months ago

另外,Bean Searcher 不是异步的,查询时可能会阻塞 vertx 的线程,这可以用一个线程池简单处理一下即可。

444579807 commented 10 months ago

好的,谢谢