Prettyfaces如何用一种模式重写两个不同的视图ID
我有两个不同的 view-id
/faces/rcg/index.xhtml 和 /faces/MasterRiskManager/index.xhtml 是否可以使用一种模式 /inex.html 重写它们?
I have two different view-id
/faces/rcg/index.xhtml
and
/faces/MasterRiskManager/index.xhtml
Is it possible to rewrite them both with one pattern /inex.html?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PrettyFaces 如何知道将传入的 /index.html 重写为哪个页面?
如果您的想法是将 /index.html 重写到一页或另一页,具体取决于其他因素(例如 get 或 post 参数),您可以只选择一个,然后在该页面中做出重定向决定(使用 f:event 标记) PreRenderViewEvent 处理程序。
No. How would PrettyFaces know which page to rewrite the incoming /index.html as?
If your idea is to rewrite /index.html to one page or the other depending on other factors such as get or post params, you could just choose one then make the redirect decision in that page (using an f:event tag) in a PreRenderViewEvent handler.