Persistence
Multiple persistence modules
登录后可跨设备保存划线和私人笔记登录
Multiple persistence providers with Guice Persist
Multiple Modules
So far we've seen how to use Guice Persist and JPA with a single persistence unit. This typically maps to one data store. Guice Persist supports using multiple persistence modules using the private modules API.
This means that you must be careful to install all JPA modules only in individual private modules:
Module one = new PrivateModule() {
protected void configure() {
install(new JpaModule("persistenceUnitOne"));
// other services...
}
};
Module two = new PrivateModule() {
protected void configure() {
install(new JpaModule("persistenceUnitTwo"));
// other services...
}
};
Guice.createInjector(one, two);The injector now contains two parallel sets of bindings which are isolated from each other. When you bind services in module one those services will get the EntityManager from persistenceUnitOne and transactions around its database.
Similarly services in module two will have their own transactions, EntityManagers etc., and these should typically not cross.
评论
登录后参与评论
正在加载评论…
KnowForge