其他分享
首页 > 其他分享> > 使用Spring Roo的@OneToMany注释问题

使用Spring Roo的@OneToMany注释问题

作者:互联网

我正在尝试使用Spring Roo生成具有@OneToMany单向关系的实体.这是我尝试过的:

entity --class ~.family.Child
field string --fieldName name
controller scaffold ~.web.ChildController
entity --class ~.family.Father
field string --fieldName name
field set --fieldName children --element ~.family.Child --cardinality ONE_TO_MANY 
controller scaffold ~.web.FatherController
perform package

这将生成预期的实体和数据库表(包括链接表.)使用以下注释生成父实体,该注释符合JPA规范:

@OneToMany(cascade = CascadeType.ALL)
private Set<family.Child> message = new java.util.HashSet<family.Child>();

但是当我进入Roo生成的管理页面,然后单击Create Father时,我发现以下消息:

创造父亲

Name:      (field to enter name)
Children:  This relationship is managed from the Father side.

这看起来像是Roo中的一个错误.有人找到了解决方法吗?或者我在这里有错误?

解决方法:

好的,这是一个解决方法:在fathers / create.jspx文件中,Roo生成以下行:

<field:simple field="children" id="c:family.Father.children" messageCode="entity.reference.not.managed" 
 messageCodeAttribute="Child" z="dMKrUOiCeYNub4vNayuiWJ99s1k="/>

这应该替换为:

<field:select field="children" id="c:family.Father.children" itemValue="id" 
 items="${children}" multiple="true" path="/children"/>

它应该工作.

标签:java,spring,spring-roo
来源: https://codeday.me/bug/20190606/1190396.html