I also have corresponding UI related file for the entity.
Does the above command take care of updating the corresponding *.jspx file with the new field in create , view , update jsp pages?
Type: Posts; User: sudhakarmuthu; Keyword(s):
I also have corresponding UI related file for the entity.
Does the above command take care of updating the corresponding *.jspx file with the new field in create , view , update jsp pages?
Hi,
i am adding a new field to exiting entity.
when i issue the following command via roo it just updated only .java file with the column.
it does not generate the fields *.aj file
roo>...
it does not allow List<**>, but i was able to generate Set<**> field.
but just field with the @ManyToMany annotation on it.
it does not create any method in **_Roo_Entity.aj file.
**_Roo_Entity.aj has method called **.persist() which persist one object at a time to DB.
I want to add batch insert capability in the **_Roo_Entity.aj.
A method which takes list of object and does...
I have similar scenario.
Borius, did you add the "storeList(List<MyEntity> entities)" method in **_Roo_Entity.aj file.
I was reading that it is not good option to edit **Roo_Entity.aj file. if...
Thanks MiB.
**_Roo_Entity.aj has method called **.persist() which persist one object at a time to DB.
I want to add batch insert capability in the **_Roo_Entity.aj.
A method which takes list of...
Hi,
I am very new to spring roo.
Here is the scenario that i am looking for.
I have created a spring controller with few operations. i need to add new operation(method).
How can i add new...