Hi All,
In the Spring Roo project, there is an included page "/WEB-INF/views/menu.jspx" which defined in layouts.xml:
<definition name="default" template="/WEB-INF/layouts/default.jspx">
<put-attribute name="menu" value="/WEB-INF/views/menu.jspx" />
</definition>
It is an static HTML, but now I would like to do some programming work before this page shown.
I know a controller define with "@Controller" and "@RequestMapping("/xx")" for page URL.
But, how can I implement a controller for an included page without explicit URL?
thanks advance!


Reply With Quote
