JSF参数传递方式之五:f:setPropertyActionListener 标签传递

页面到Bean的参数传递
页面中设置参数:
<h:form>
			<h:commandButton action="#{paramBean.test3}" value="Test14">
				<f:setPropertyActionListener value="hujilie" target="#{paramBean.name}"/>
			</h:commandButton>
			<h:commandLink action="#{paramBean.test3}" value="Test15">
				<f:setPropertyActionListener value="hujilie" target="#{paramBean.name}"/>
			</h:commandLink>
	</h:form>
后台取参数:直接使用属性的值。

你可能感兴趣的:(java,bean,JSF,F#)