spring管理的ehcache缓存没有起做用的原因

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring管理的ehcache缓存没有起做用的原因相关的知识,希望对你有一定的参考价值。

Dao代码如下:

@Repositorybr/>@EnableCaching
class UserDao(jdbcTemplate: JdbcTemplate) {

@Cacheable(keyGenerator = "cacheKeyGenerator", cacheNames = Array("merInfo"))
private def findByName(name: String): Option[User] = {

            val sql = ""        //此处为sql
                val rs = jdbcTemplate.queryForRowSet(sql, name)
                if (rs.next()) {
                    Some(User(
                        rs.getString("name"),
                        rs.getString("age")
                    ))
                } else None
            }

    def findUser(name: String):     Option[User] =  {
        findByName(name)
    }

}


以上是关于spring管理的ehcache缓存没有起做用的原因的主要内容,如果未能解决你的问题,请参考以下文章

为啥我的form的onsubmit事件不起做用?

Spring整合Ehcache管理缓存

Spring整合Ehcache管理缓存

Spring整合Ehcache管理缓存

Spring整合Ehcache管理缓存

spring使用ehcache缓存