查詢數(shù)據(jù)

2018-05-31 09:23 更新

獲取指定id值的數(shù)據(jù)記錄代碼如下

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方法是先從緩存中獲取,如果有就返回,如果沒(méi)有再去查詢數(shù)據(jù)表

load方法是從數(shù)據(jù)表中查詢,然后放入緩存中并返回




以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)