異なる永続性ユニットのエンティティを現在のマッピングに配置するための特定の構成はありますか?
例えば:
@RooJpaActiveRecord(persistenceUnit = "persistenceUnit_central")
public class UserGroups{
//users come from `persistenceUnit_client`
//how to work this out?
//can mappedBy and targetEntity works the same way
//as they are in the same persistence unit?
@OneToMany
private List<User> users;
}
前もって感謝します。