grails不会保存但没有错误

时间:2010-11-30 05:31:56

标签: java grails java-ee grails-domain-class

您好,我有一个像以下

这样简单的域名
// page 52 Bankruptcy Questions 
class FamilyLawFinancial{

    Date dateOfTheOrder ;
    boolean isPartyToFamilyLawProperty = false; 
    boolean isCurrentlyInvolvedInFamilyLawProperty = false;
    boolean isBecomeInvolvedInProceedings = false;

    static belongsTo=[person:Person];

    static constraints = {
        dateOfTheOrder(nullable:true);
        isPartyToFamilyLawProperty(nullable:false);
        isCurrentlyInvolvedInFamilyLawProperty(nullable:false);
        isBecomeInvolvedInProceedings(nullable:false);
    }

    String toString(){
        "${id}"
    }
}

这是保存数据的控制器:

    def save = {
    def person = Person.get(session.curperson.id);
    def obj = FamilyLawFinancial.findByPerson(person);
    if(obj == null){
        obj = new FamilyLawFinancial();
        obj.person = person ; 
    }
    params.dateOfTheOrder = myutil.formatDate(params.dateOfTheOrder);
    obj.properties = params;

    println(obj.hasErrors());
    println(obj.dateOfTheOrder);
    if(obj.hasErrors() && !obj.save(flush:true)){
        println("errors: ${obj.errors}");
        flash.message = "error found";
        println("save familyLawFinancial errors: ${errors}");
    }else{
        flash.message = "saved ";
    }
    redirect(controller:'frontPage', action:'index'); return ;
}

obj.hasErrors()产生错误(表示没有错误),但它不会保存到数据库中。知道怎么调试这个吗?

ps:myutil.formatDate() - >用于将日期字符串(例如19/11/2010)转换为Date()

1 个答案:

答案 0 :(得分:6)

if(obj.hasErrors() && !obj.save(flush:true)){

如果评估前的条件为&&,则不会评估false之后的条件。

false && true评估为false时,从语言的角度来看,评估第二个条件效率不高。

毕竟,在这种情况下,obj.save(..)永远不会被调用。