guice-persist是否支持@Finder注释

时间:2011-04-21 19:36:07

标签: guice guice-persist

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

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

基于

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

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

1 个答案:

答案 0 :(得分:2)

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

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