如何在 Grails 中显示异常?

Posted

技术标签:

【中文标题】如何在 Grails 中显示异常?【英文标题】:How to Display Exception In Grails? 【发布时间】:2013-05-15 19:03:21 【问题描述】:

我的代码有问题。我如何处理从服务到我的 gsp 的错误?我尝试使用服务或控制器的渲染,在调用 save() 期间发生验证错误: - 字段“core.db_email”上的对象“talent.CandidateProfile”中的字段错误:拒绝值 [];具有完整异常跟踪的代码。我的消息来源:

 def create() 
        [candidateProfileInstance: new CandidateProfile(params)]
    

    def save() 
        def candidateProfileInstance = new CandidateProfile(params)
        if (!candidateProfileInstance.save(flush: true)) 
            render(view: "create", model: [candidateProfileInstance: candidateProfileInstance])
            return
        

        flash.message = message(code: 'default.created.message', args: [message(code: 'candidateProfile.label', default: 'CandidateProfile'), candidateProfileInstance.id])
        redirect(action: "show", id: candidateProfileInstance.id)
    

我的 .gsp 页面代码

<div class="full-filed">
            <h3>Email Address:</h3>
        </div>
        <div    class="fieldcontain $hasErrors(bean: candidateProfileInstance, field: 'core.db_email', 'error') ">
            <label for="core.db_email" class="error_message"> <g:message
                    code="candidateProfile.core.db_email.label" default="Dbemail" />
            </label>
        </div>
        <g:textField name="core.db_email" value="" class="loginTxtBox" placeholder="Email Address" />

我只想向用户显示错误,而不是完整的异常跟踪

【问题讨论】:

【参考方案1】:

形成你的 config.grooyPage

//grails.gorm.failOnError = true

只需对此行进行评论...这样它就会显示您的自定义错误

【讨论】:

以上是关于如何在 Grails 中显示异常?的主要内容,如果未能解决你的问题,请参考以下文章

Grails 控制器中的异常处理

Grails下如何防止异常导致事务回滚?

在 Grails 中,如何在字段旁边显示验证错误消息?

在 Grails (GORM) 中处理并发修改,同时避免过时对象异常

Grails如何对异常执行单元测试

如何使用 CKEditor 在 Grails 中保存和显示 HTML?