是否可以在Struts中的validate方法的HttpServletRequest对象中的请求或会话范围中设置属性。
示例:
@Override
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request){
ActionErrors ae = new ActionErrors();
request.getSession().setAttribute("unit", request.getParameter("unit"));
}
因为我一直在尝试这个并且它在我的jsp中不起作用。如果它不起作用,那么此方法中此对象的用途是什么。