如何制作带有 .jsf 扩展名的 JSF 2.0 页面?
默认的是xhtml。我想将其更改为.jsf。
使用facelets/jsp 或使用这两者中的任何一个可以实现这一点吗?
The default one is xhtml. I want to change it to .jsf.
Is this possible using facelets/jsp or using anyone of these two?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您询问的是更改 servlet 映射,以便您可以转到 http://website/index.jsf 而不是类似于 http://website/faces/index.xhtml。为此,请更改 web.xml 中的 url-pattern。
我不必更改项目中索引文件的 .xhtml 文件扩展名即可使其工作。
I think your asking about changing the servlet mapping so you can go to http://website/index.jsf instead of something like http://website/faces/index.xhtml. To do this change your url-pattern in your web.xml .
I didn't have to change the .xhtml file extension of the index file in my project for this to work.