Grails 2.4.4 使用searchable插件

由于Grail 2.4.4 默认使用Hibernate 4,而searchable现在只支持Hibernate 3,所以需要使用3.

修改BuildConfig.groovy

        // runtime ":hibernate4:4.3.6.1" // or ":hibernate:3.6.10.18"
	runtime ":hibernate:3.6.10.18"


修改DataSource.groovy

    cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory' // Hibernate 3
//    cache.region.factory_class = 'org.hibernate.cache.ehcache.EhCacheRegionFactory' // Hibernate 4


你可能感兴趣的:(grails)