Constraints.groovy文件未被提取...(Hibernate + Grails)

时间:2012-02-28 07:46:00

标签: hibernate grails

我正在使用带有数据对象(.java)的Hibernate(* .hbm.xml)并尝试使用* Constraints.groovy(Grails and Hibernate 2.0.1)进行GORM验证

我按照上面的文档将* Constraints.groovy文件放在Java对象所在的文件夹中,但不知何故Grails没有拿起。

这是Constraints(ServerSideConstraints.groovy)文件:

constraints = {
    name blank: false, size:7..15
}

Java对象:

package com.example.dos.model;

import java.util.HashSet;
import java.util.Set;


public class ServerSide implements java.io.Serializable {

    // Fields

    private Long id;
    private String name;

    // Constructors

    /** default constructor */
    public ServerSide() {
    }

    /** minimal constructor */
    public ServerSide(String name) {
        this.name = name;
    }

    // Property accessors

    public Long getId() {
        return this.id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Nexus getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }    
}

这是我的Config.groovy:

// locations to search for config files that get merged into the main config
// config files can either be Java properties files or ConfigSlurper scripts

// grails.config.locations = [ "classpath:${appName}-config.properties",
//                             "classpath:${appName}-config.groovy",
//                             "file:${userHome}/.grails/${appName}-config.properties",
//                             "file:${userHome}/.grails/${appName}-config.groovy"]

// if (System.properties["${appName}.config.location"]) {
//    grails.config.locations << "file:" + System.properties["${appName}.config.location"]
// }


grails.project.groupId = appName // change this to alter the default package name and Maven publishing destination
grails.mime.file.extensions = true // enables the parsing of file extensions from URLs into the request format
grails.mime.use.accept.header = false
grails.mime.types = [ html: ['text/html','application/xhtml+xml'],
                      xml: ['text/xml', 'application/xml'],
                      text: 'text/plain',
                      js: 'text/javascript',
                      rss: 'application/rss+xml',
                      atom: 'application/atom+xml',
                      css: 'text/css',
                      csv: 'text/csv',
                      all: '*/*',
                      json: ['application/json','text/json'],
                      form: 'application/x-www-form-urlencoded',
                      multipartForm: 'multipart/form-data'
                    ]

// URL Mapping Cache Max Size, defaults to 5000
//grails.urlmapping.cache.maxsize = 1000

// What URL patterns should be processed by the resources plugin
grails.resources.adhoc.patterns = ['/images/*', '/css/*', '/js/*', '/plugins/*']


// The default codec used to encode data with ${}
grails.views.default.codec = "none" // none, html, base64
grails.views.gsp.encoding = "UTF-8"
grails.converters.encoding = "UTF-8"
// enable Sitemesh preprocessing of GSP pages
grails.views.gsp.sitemesh.preprocess = true
// scaffolding templates configuration
grails.scaffolding.templates.domainSuffix = 'Instance'

// Set to false to use the new Grails 1.2 JSONBuilder in the render method
grails.json.legacy.builder = false
// enabled native2ascii conversion of i18n properties files
grails.enable.native2ascii = true
// packages to include in Spring bean scanning
grails.spring.bean.packages = []
// whether to disable processing of multi part requests
grails.web.disable.multipart=false

// request parameters to mask when logging exceptions
grails.exceptionresolver.params.exclude = ['password']

// enable query caching by default
grails.hibernate.cache.queries = true

// set per-environment serverURL stem for creating absolute links
environments {
    development {
        grails.logging.jul.usebridge = true
    }
    production {
        grails.logging.jul.usebridge = false
        // TODO: grails.serverURL = "http://www.changeme.com"
    }
}

// log4j configuration
log4j = {
    // Example of changing the log pattern for the default console
    // appender:
    //
    //appenders {
    //    console name:'stdout', layout:pattern(conversionPattern: '%c{2} %m%n')
    //}

    error  'org.codehaus.groovy.grails.web.servlet',  //  controllers
           'org.codehaus.groovy.grails.web.pages', //  GSP
           'org.codehaus.groovy.grails.web.sitemesh', //  layouts
           'org.codehaus.groovy.grails.web.mapping.filter', // URL mapping
           'org.codehaus.groovy.grails.web.mapping', // URL mapping
           'org.codehaus.groovy.grails.commons', // core / classloading
           'org.codehaus.groovy.grails.plugins', // plugins
           'org.codehaus.groovy.grails.orm.hibernate', // hibernate integration
           'org.springframework',
           'org.hibernate',
           'net.sf.ehcache.hibernate'
}

hibernate {
    naming_strategy = org.hibernate.cfg.EJB3NamingStrategy
}

我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

找到我的问题的答案。 * Constraints.groovy应该与为Hibernate模型(hbm.xml和POJO)定义的包在同一个文件夹下。

我的问题是hbm.xml文件和POJO文件使用了错误的包。我有

package com.example.dos.model;

但是我把那些hbm.xml&amp; pojo文件位于/ com / example / dos / model / dos /下,因此包定义不正确。在我纠正下面之后工作。

package com.example.dos.model.dos;
相关问题