如何在JSF中使用“Binding”属性?何时和如何使用它?
value
binding
public class User { private String name; private UICommand link; // Getters and setters omitted.}
<h:form> <h:commandLink binding="#{user.link}" value="#{user.name}" /></h:form>
value
name
User
binding
link
User
j_id_jsp_1847466274_1
<form action="/TestJSF/main.jsf" enctype="application/x-www-form-urlencoded" id="j_id_jsp_1847466274_1" method="post" name="j_id_jsp_1847466274_1"> <input name="j_id_jsp_1847466274_1" type="hidden" value="j_id_jsp_1847466274_1"> <a href="#" onclick="...">Name</a> <input autocomplete="off" id="javax.faces.ViewState" name="javax.faces.ViewState" type="hidden" value="-908991273579182886:-7278326187282654551"></form>
binding
呼唤远方