2

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

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

是基于

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

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

4

1 回答 1

2

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

Module persistModule = new JpaPersistModule(...)
    .addFinder(SomeFinder.class)
    .addFinder(OtherFinder.class);
于 2011-04-21T19:58:02.253 回答