Good morning,
I am working with spring roo version "spring-roo-1.1.5.RELEASE".
We have a problem when we do reverse engeneering in our project, the first time we do it everything is ok,
but after changing the DB, if we make reengineering then *Roo_Configurable aspects of the entities and primary keys are modified with the identifier 'id', for example:
Originally:
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "COD_PERFINV")
private BigDecimal Turhejsd.codPerfinv;
and after we do reverse engineering:
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "id")
private Long Turhejsd.id;
We think it is a ROO problem so we would like you to give us some tips to solve it
Thank you very much. Best regards.


Reply With Quote