好几天没人发表了,今天请教一个问题

bbhehe 2011-07-05
效验插入数据

判断插入数据是否重复,重复则不插入。
我在处理时出现问题,不知是否有人讲解下。
public ActionForward doUpdateOption(ActionMapping mapping, ActionForm form,   
        HttpServletRequest request, HttpServletResponse response)   
        throws ApplicationException {   
    OptionForm optionForm = (OptionForm) form;   
    ActionErrors errors = new ActionErrors();   
    Option option = optionForm.getOption();   
  
        // 校验重复性   
    if (!optionHandler.validateOptionRepeat(option.getOptionId(),option.getParentId(),option.getAttributeName(), option.getOptionDisplayTransId(), option.getOptionValue())) {   
        errors.add("option.attributeName", new ActionError(   
    "option.name.and.opitonDisplayTransId.are.repeat", option.getAttributeName()));   
                saveErrors(request, errors);   
                return mapping.findForward("updateOption");   
            }   
                System.out.print(option.getAttributeName());   
                option.setLastUpdatedBy(this.getUserId(request));   
                option.setCreatedBy(this.getUserId(request));   
                optionHandler.saveOption(option);  

bbhehe 2011-07-05
自己吱一声
Just_抱怨 2011-10-12
lz validateOptionRepeat 方法在哪里 木有看到哦
Global site tag (gtag.js) - Google Analytics