本文介绍了jsp:setproperty property ="*"代表什么?意思是?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<jsp:setproperty name="Test" property="*">
这是什么意思?
我知道定义是在指定的JavaBean实例中设置属性".那么,在javaBean测试中设置属性的又是什么呢?
I know the definition is, "Sets a property in the specified JavaBean instance". So what is it setting a property in the javaBean test too ?
推荐答案
星号(*)用作操作的属性值.这意味着其名称与发送到页面的请求参数匹配的所有bean属性都将自动设置
an asterisk (*) is used as the property attribute value of the action. This means that all bean properties with names that match request parameters sent to the page are set automatically
这篇关于jsp:setproperty property ="*"代表什么?意思是?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!