是否可以使用 JSF 1.2 动态加载 Phase Listener?
我一直在使用 Phase Listener 来调试我的 JSF 应用程序。
现在我想知道是否可以动态加载它,例如,取决于是否设置了系统属性(这样我就可以提交该内容,而不用担心在生产中部署之前必须将其删除)。 有谁知道是否有办法在faces-config.xml中做到这一点?
提前致谢!
I have been using a Phase Listener to debug my JSF application.
Now I'm wondering if it's possible to load it dynamically depending on, for example, a system property is set or not (so I can commit the thing, and not worry about having to remove it before deploy in production).
Does anyone know if there is a way to do that in faces-config.xml
?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过
UIViewRoot#addPhaseListener()
。您只需在每次观看的基础上执行此操作。最好保持阶段侦听器注册,并让它仅在设置或未设置所需的系统属性时才采取操作。
You can add phaselisteners dynamically by
UIViewRoot#addPhaseListener()
.You've only to do it on a per-view basis. It's perhaps better to keep the phase listener registered and let it take actions only when the desired system property is set or not.