kislo_metal
kislo_metal

Reputation: 446

Servlet 3.0 annotations <welcome-file>

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>

Upvotes: 6

Views: 4089

Answers (1)

lexicore
lexicore

Reputation: 43661

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.

Upvotes: 5

Related Questions