昨天,当我试图从动作中获取变量值时, 如果我将ftl值中定义的变量设置为低于10,则结果总是为空。
<input type="hidden" name="orderId" id=orderId" value="9" />
public class OrderVo {
private Long id;
public Long getId() { return this.id; }
public void setId(Long id) { this.id = id; }
}
System.out.println("=============================" +vo.getOrderId());
the result was ""
首先谢谢你,但它不起作用。 我前天得到了它! 因为对于tomcat的发布。 你可能会在tomcat 6.x中遇到问题,但不会遇到5.x。
答案 0 :(得分:1)