作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
实际上我需要为此 map 标记进行注释。请帮我做。我是这个注释的新手。
在我的 xml 文件中,
<map name="Report" table="ABC_TABLE" inverse="true" cascade="all-delete-orphan">
<key column="ORIGINAL_GUID"/>
<map-key column="REPORT_GUID" type="string"/>
<one-to-many class="com.reporting.ReportingPO"/>
</map>
在我的 Pojo 类中,我需要给出注释
//annotations
private Map<String, ReportingPO> Reporting = new HashMap<String, ReportingPO>();
最佳答案
请使用以下内容
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name="user_id", nullable=false)
private User user;
关于java - 如何在具有一对多关系的 map 中进行标注?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31648899/
我是一名优秀的程序员,十分优秀!