首页>代码>spring+mybatis+memcached简单整合的项目demo>/springmvc_mybatis_memcached/src/it/shb/ssm/service/impl/UserServiceImpl.java
package it.shb.ssm.service.impl; import javax.annotation.Resource; import org.springframework.stereotype.Service; import com.danga.MemCached.MemCachedClient; import it.shb.ssm.mapper.UserMapper; import it.shb.ssm.po.User; @Service("userService") public class UserServiceImpl implements IUserService { @Resource private UserMapper userMapper; @Resource private MemCachedClient memcachedClient; /* 使用下面的方法实例化MemCachedClient也可以,在spring的配置文件中就可以不用配置相应的MemCachedClient的bean了。 * 下面的方法中构造函数中的值必须和spring的配置文件中的poolname保持一致,否则将会报错。 * private static MemCachedClient memcachedClient; * static { if (memcachedClient == null) memcachedClient = new MemCachedClient("memcachedPool"); } */ public User getUser(String userName) { User user; //判断缓存中数据是否存在,如果不存在则添加,存在则读取 if(memcachedClient.get("user")!=null){ System.out.println("从缓存中取到的值...."); user=(User) memcachedClient.get("user"); }else{ System.out.println("从数据库中取到的值...."); user=userMapper.getUser(userName); memcachedClient.add("user", user, 60000); } return user; } }

执行中 LV7
2019年5月20日
1943815081 LV13
2019年1月2日
虫儿飞 LV4
2018年10月11日
sss师122 LV3
2018年9月19日
wcy071213 LV27
2018年6月2日
leoxxxx LV11
2018年5月17日
Ceterniy LV9
2018年5月8日
weiwei03147 LV3
2018年4月24日
元芳你怎么看 LV15
2018年1月26日
oceanchen LV14
2017年12月29日

sdhfkh LV4
2023年6月12日
gw0207 LV13
2023年4月26日
李亮 LV19
2023年3月6日
crosa_Don LV18
2023年2月10日
Sunsi12345 LV8
2022年12月2日
zhiwei0127 LV1
2022年11月6日
5212991314
2022年10月26日
暂无贡献等级
谢谢谢谢谢谢你 LV6
2022年7月19日
采暖11 LV11
2021年11月23日
ccaozzhen LV1
2021年6月30日