Re: Have root URL render some page other than the "index" page
Cezary Biernacki <[email protected]>
| Newsgroups | gmane.comp.java.tapestry.user |
|---|---|
| Message-ID | <CAE26fNhcQxgs=Xfdzj=_hg=VN+oum4POVeVH9b18cSSMTYCZWA@mail.gmail.com> |
You can use contribute symbol "tapestry.start-page-name" (see
org.apache.tapestry5.SymbolConstants#START_PAGE_NAME), e.g. by adding such
method in your AppModule class:
public static void
contributeApplicationDefaults(MappedConfiguration<String, Object>
configuration) {
configuration.add(SymbolConstants.START_PAGE_NAME, "foo");
}
On Thu, Jan 11, 2018 at 11:27 PM, Pratik Patel <[email protected]> wrote:
> I am using tapestry version 5.3.8.
>