guice-persist是否支持@Finder注解

发布于 2024-11-03 08:02:34 字数 396 浏览 3 评论 0原文

Guice-persist 基于 warp-persist,它具有 finder 方法的概念。

http://code.google.com/p/google-guice/wiki/GuicePersist

基于

http://code.google.com/p/warp-persist /

我可以看到guice-persist中有一个类似于warp-persist的@Finder注释,但是没有文档。

Guice-persist was based on warp-persist which had the concept of finder methods.

http://code.google.com/p/google-guice/wiki/GuicePersist

was based on

http://code.google.com/p/warp-persist/

I can see that there is an annotation for @Finder in guice-persist similar to warp-persist but there is no documentation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海风掠过北极光 2024-11-10 08:02:34

是的,您需要在创建 JpaPersistModule 时将查找器添加到它:

Module persistModule = new JpaPersistModule(...)
    .addFinder(SomeFinder.class)
    .addFinder(OtherFinder.class);

Yes, you need to add the finders to the JpaPersistModule when you create it:

Module persistModule = new JpaPersistModule(...)
    .addFinder(SomeFinder.class)
    .addFinder(OtherFinder.class);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文