Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
Minor
-
Resolution: Complete
-
Affects Version/s: 1.2.0.RELEASE, 1.2.2.RELEASE
-
Fix Version/s: 1.2.3.RELEASE
-
Component/s: @ ROO SHELL
-
Labels:
-
Environment:Spring roo 1.2.2 Release
Description
The roo shell show a bug.
Cannot present nested annotations unless created by this class.
Yet my project is ok and can be start.
This issue is show when I make a database reverse engineer.
When it want update
@RooJavaBean @RooToString @RooJson @RooJpaActiveRecord(versionField = "", table = "cmp_connector") @RooDbManaged(automaticallyDelete = true) public class CmpConnector implements Component<CnfCnnValue> { @ManyToOne @JoinColumn(name = "FK_PARENT", referencedColumnName = "CNN_ID", insertable = true, updatable = true) private com.logica.soa.ui.model.database.CmpConnector fkParent; @Column(name = "NAME", columnDefinition = "VARCHAR", length = 255) @NotNull @NotBlank private String name; @OneToMany(mappedBy = "fkCnn", cascade = CascadeType.ALL) @OrderBy("cnnValId") private Set<CnfCnnValue> cnfCnnValues; /** method are defined */ }
And the class :
@RooJavaBean @RooToString @RooJpaActiveRecord(versionField = "", table = "usr_group") @RooDbManaged(automaticallyDelete = true) public class UsrGroup { @Column(name = "NAME", columnDefinition = "VARCHAR", length = 45) @NotNull @NotEmpty private String name; @ManyToMany(mappedBy = "usrGroups", cascade = CascadeType.REFRESH) private Set<UsrUser> usrUsers; /** no additional code */ }
Attachments
Issue Links
- is duplicated by
-
ROO-3218 Cannot present nested annotations unless created by this class
-
- Resolved
-