views:

142

answers:

1

Is it possible to set welcome-file tag from standard web.xml file by servlet 3.0 annotation ?

<welcome-file-list>
        <welcome-file>PageName.html</welcome-file>
</welcome-file-list>
A: 

No, there is not such annotation at the moment. Servlet 3.0 annotations are InitParam, ServletFilter, WebServlet, WebServletContextListener, there's nothin for the welcome files in there.

lexicore
yes.. looks like it`s only in proposal currentlyhttp://jcp.org/en/jsr/detail?id=315
kislo_metal