It is configured in web.xml, e.g.:

    <context-param>
        <param-name>tapestry.app-package</param-name>
        <param-value>org.example.myapp</param-value>
    </context-param>


from
http://tapestry.apache.org/configuration.html#Configuration-Changestoweb.xml

<web-app>
    <display-name>My Tapestry Application</display-name>
    <context-param>
        <param-name>tapestry.app-package</param-name>
        <param-value>org.example.myapp</param-value>
    </context-param>
    <filter>
        <filter-name>app</filter-name>
        <filter-class>org.apache.tapestry5.TapestryFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>app</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping></web-app>


Best regards,
Cezary

On Fri, Oct 26, 2012 at 9:27 PM, membersound <[email protected]> wrote:

> HI,
>
> where can I specify the tapestry specific path, like ApplicationModule.java
> or in general the folders pages and components. How can I changes these
> paths?
>
> Thanks
>
>
>
> --
> View this message in context:
> http://tapestry.1045711.n5.nabble.com/Specify-tapestry-specific-paths-tp5717310.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

Reply via email to