useBean setProperty 的行为不符合广告
我试图在请求属性和 bean 之间使用“自动连接”,
<jsp:useBean id="cib" class="(fqn).CarInfoWebBean" scope="request">
<jsp:setProperty name="cib" property="*" /></jsp:useBean>
但(唯一)属性的设置器不会被调用。
bean属性的类型为long,并且属性名和属性名是匹配的。
奇怪的是,它
<jsp:setProperty name="cib" property="carId" param="carId"/>
也不起作用,但
<jsp:setProperty name="cib" property="carId" value="${carId}"/>
工作得很好。
I'm trying to use "auto wiring" between request attributes and a bean with
<jsp:useBean id="cib" class="(fqn).CarInfoWebBean" scope="request">
<jsp:setProperty name="cib" property="*" /></jsp:useBean>
but the setter of the (only) property doesn't get called.
The bean property is of type long, and the property name and attribute name are matching.
The strange thing is that
<jsp:setProperty name="cib" property="carId" param="carId"/>
isn't working either, but
<jsp:setProperty name="cib" property="carId" value="${carId}"/>
is working just fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原来param属性和property(*)只能获取请求参数,不能获取请求属性……
It turns out that param attribute and property(*) can get only request parameters, not request attributes...