I'd recommend Google Guice. Your web.xml becomes a stub, and
you can write beautiful module configurations such as:

protected void configureServlets() {
       serve("*.html").with(MyServlet.class);
       filter("/my/*").through(MyFilter.class);
       ...
 }

see http://code.google.com/p/google-guice/wiki/ServletModule

On 7 Dez., 18:28, Jess Evans <[email protected]> wrote:
> You might try leveraging one of the MVC frameworks which supports
> inheritance for its action mapping files.
>
> Xdoclet may be another alternative worth investigating for a lower level
> build time composition of web.xml (although I haven't used it in the GAE /
> Eclipse context).  It was a great ant tool for generating EJB descriptors
> back in the olden days.
>
> On Dec 7, 2009 11:23 AM, "Prashant" <[email protected]> wrote:
>
> ok, thanks anyway.
>
> -- You received this message because you are subscribed to the Google Groups
> "Google App Engine f...

--

You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.


Reply via email to