我正在使用jsf
和Primefaces
开发项目。
在此,我将所有网页移至包含welcomePage.xhtml
的WEB-INF文件夹,以防止URL
中的直接访问页面。
我在welcomePage.xhtml
中将<welcome-file>
设为web.xml
:
<welcome-file-list>
<welcome-file>welcomePage.xhtml</welcome-file>
</welcome-file-list>
运行我的应用程序时出现错误HTTP Status 404
。
我不知道为什么它不起作用。但是当welcomePage.xhml
位于WEB-INF
之外时它的工作。
有什么想法吗?