Most likely. You will have to make your own DoD class for primary key testing until we have added the featureIs this exception also because of composite primary key or something else??
Most likely. You will have to make your own DoD class for primary key testing until we have added the featureIs this exception also because of composite primary key or something else??
Hi,
Thanks cblicious and Alan for ur reply .....
For some of the tables, when i click on list in roo UI, its throwing "ORA-01747: invalid user.table.column, table.column, or column specification" exception.
Is this exception also because of composite primary key or something else??
Thanks,
Pavan
Hi,
Thanks for ur reply alan/cblicious.
Please reply to my post....
Thanks,
Pavan
Hi cblicious,
I followed ur steps....
First I refactor the aspectj files....
Added tostring() in PK class.
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("DoaId: ").append(getDoaId()).append(", ");
sb.append("MasterField: ").append(getMasterField()).append(", ");
sb.append("CreatedOn: ").append(getCreatedOn()).append(", ");
sb.append("CreatedBy: ").append(getCreatedBy()).append(", ");
sb.append("ModifiedOn: ").append(getModifiedOn()).append(", ");
sb.append("ModifiedBy: ").append(getModifiedBy()).append(", ");
sb.append("Status: ").append(getStatus());
return sb.toString();
}
After this i ran the roo applicaton...when i click on "List" link still i am getting "missing paranthesis error"...
If you get the latest Roo code from Git, I just committed code today that will now support composite keys in DoD (data on demand) and intregration tests - no web UI functionality yet though.
Hi Alan,
I am new to this...no idea how to get latest code from git.....
can u pls help me in this??
Thanks,
Pavan
Hi,
I got the location for code "http://git.springsource.org/roo/roo". But when i tried to clone, it is asking Publick key....since i am using windows environment i dont have any public key...
Thanks,
Pavan
Hi Alan,
Atlast i downloaded "org.springframework.roo.addon.dod-1.1.3.BUILD-20110320.082216-18.jar" and org.springframework.roo.addon.entity-1.1.3.BUILD-20110320.082136-18.jar files from "http://s3browse.springsource.com" and place it under "spring-roo-1.1.2.RELEASE\bundle".
But still i am getting "missing right parathesis error".
Thanks,
Pavan