查询数据
2018-05-31 09:23 更新
获取指定id值的数据记录代码如下
String id="65d22337-102f-4f41-80e5-7981c9d578ae";
Template<Product> template=new ProxyTemplate(Product.class).getInstance();
try
{
Product product=template.get(id);
System.out.println("product="+product);
} catch (Exception e) {
e.printStackTrace();
}finally
{
template.close();
}
除了get方法外,还可以使用load方法,如
Product product=template.load(id);
get方法是先从缓存中获取,如果有就返回,如果没有再去查询数据表
load方法是从数据表中查询,然后放入缓存中并返回
以上内容是否对您有帮助:
← 修改数据
更多建议: