JPA 关系或辅助表
我正在使用 JPA 重新设计我的一个项目,该项目最初是在 iBatis 上进行的。
public class Entity{
//ids and other stuff
String locale;
String text;
}
我将语言环境和文本存储到单独的表中,这可以通过 JPA 中的辅助表来实现。
- 除了 Join 之外,我无法使用自己的 id 创建辅助表 ID?
- 我怎样才能实现它?如果可能的话,它会引发以下问题 问题:
- 如果我创建一个将区域设置设置为用户设置的实体对象,我将如何检索它
I am reengineering one of my project with JPA which was initially on iBatis.
public class Entity{
//ids and other stuff
String locale;
String text;
}
I was storing locale and text into separate table, which can be achieved via secondary table in JPA.
- I am not able to create secondary table with its own ids besides Join
id? - how can I achieve it? If possible then it raises the following
question: - how would I retrieve it back if I create an entity object with locale set to user settings
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅
http://en.wikibooks.org/wiki/Java_Persistence/Tables#Multiple_tables
否则请包括您的确切架构、模型和问题。
See,
http://en.wikibooks.org/wiki/Java_Persistence/Tables#Multiple_tables
Otherwise include your exact schema and model and issue.