Servlet 3.0 annotations <welcome-file>

梦想的初衷 提交于 2019-12-18 06:02:22

问题


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>

回答1:


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.



来源:https://stackoverflow.com/questions/2540549/servlet-3-0-annotations-welcome-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!