Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于打印页面,它只是文本,没有命令链接/按钮来点击,不需要保存打印页面的状态。有没有办法告诉 JSF 不要保存状态?谢谢。
如果视图不包含任何<h:form>. 所以没什么好担心的。
<h:form>
从<f:view transient="true">Mojarra 2.1.19 开始启用无状态模式的 . 如果视图已经不包含任何<h:form>.
<f:view transient="true">
使用较新版本的 Mojarra,您可以执行以下操作:
<f:view transient="true"> Your page </f:view>
但我认为这样做不会对您的申请产生任何显着的积极影响。