как настроить grails1.2 с помощью oscache? - PullRequest
0 голосов
/ 24 мая 2010

Я делаю это:

DataSource.groovy:
hibernate {
    cache.use_second_level_cache=true
    cache.use_query_cache=true
    cache.provider_class='com.opensymphony.oscache.hibernate.OSCacheProvider'
}

и

 BuildConfig.groovy:
 inherits( "global" ) {
        // uncomment to disable ehcache
        excludes 'ehcache'
    }

runtime ("opensymphony:oscache:2.4.1") { 
 excludes 'jms', 'commons-logging', 'servlet-api' 
   } 

но я получаю только эту ошибку:

commons.DefaultGrailsApplication The class [com.ai.scenter.service.reschange.ResourceChangeAdapter] was not found when attempting to load Grails application. Skipping.
commons.DefaultGrailsApplication The class [com.ai.scenter.service.reschange.ResourceChangeService] was not found when attempting to load Grails application. Skipping.
hibernate.ConfigurableLocalSessionFactoryBean There was an error configuring the Hibernate second level cache: could not instantiate CacheProvider [com.opensymphony.oscache.hibernate.OSCacheProvide]
hibernate.ConfigurableLocalSessionFactoryBean This is normally due to one of two reasons. Either you have incorrectly specified the cache provider class name in [DataSource.groovy] or you do not have the cache provider on your classpath (eg. runtime ("net.sf.ehcache:ehcache:1.6.1"))

как я могу это сделать?

1 Ответ

1 голос
/ 24 мая 2010

Судя по вашим логам, вы ошиблись в провайдере, вам не хватает окончательного письма " r ".

om.opensymphony.oscache.hibernate.OSCacheProvide[r]
...