Hey, im just learning Roo.
I have a domain object:
Person {
private String name;
private boolean graduated;
}
Id like to create a new page that lists only graduated Person objects. Id like this new page to appear on the menu under the List Person's page link.
What is the best practice in Roo to create this new page?
Do I create a new method on the controller?
How do I get the JSP generated?
How do I get this new page to be picked up by the menu.jspx?
Thanks in advanced. Georgi