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 bean 操作方法的 URL?
基本上我希望能够做到以下几点:
<a href="/PA/faces/pageBeanAction">click</a>
这应该调用 JSF bean 中的方法。是否可以?
我正在使用 JSF 1.2。
在与 URL 后面的视图关联的请求范围 bean 的构造函数中执行该工作。
public class Bean { public Bean() { // Here. } // ... }
只要您#{bean.something}在视图中有 a,那么 bean 的构造函数就会被调用。
#{bean.something}