1. 程式人生 > >巴巴運動網 (18--20) 用泛型技術對產品分類的業務管理Bean抽象,測試,過載

巴巴運動網 (18--20) 用泛型技術對產品分類的業務管理Bean抽象,測試,過載

package com.itcast.service.base;

public interface DAO {

	/**
	 * 儲存實體
	 * @param entity  實體id
	 */
	public void save(Object entity);
	
	/**
	 * 更新實體
	 * @param entity   實體id
	 */
	public void update(Object entity);
	
	/**
	 * 刪除實體
	 * @param entityid  實體id
	 */
	public <T> void delete(Class<T> entityClass,Object entityid);
	
	/**
	 * 刪除實體
	 * @param entityids  實體id 陣列。
	 */
	public <T> void delete(Class<T> entityClass,Object[] entityids);
	
	/**
	 * 獲取實體  
	 * @param entityClass  實體類
	 * @param entityid 實體id
	 * @return
	 */
	public <T> T find(Class<T> entityClass, Object entityid);
}

業務邏輯介面實現類:

package com.itcast.service.base;

import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;

import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

// 事務管理。 預設的事務行為。
@Transactional
public abstract class DaoSupport implements DAO {

	// 注入實體管理器:
	@PersistenceContext protected EntityManager em;
	
	@Override
	public <T> void delete(Class<T> entityClass,Object entityid) {
		delete(entityClass,new Object[]{entityid});
//		em.remove(em.getReference(entityClass, entityid));
	}

	@Override
	public <T> void delete(Class<T> entityClass,Object[] entityids) {
		for(Object id : entityids){
			// 取得實體的託管物件 em.getReference(arg0, arg1)
			em.remove(em.getReference(entityClass, id));
		}

	}

	// 修改事物。1,只能讀。2,修改事物傳播行為:不需要開事物的。
	@Transactional(readOnly=true,propagation=Propagation.NOT_SUPPORTED)
	public <T> T find(Class<T> entityClass, Object entityid) {
		return em.find(entityClass, entityid);
	}
	
	@Override
	public void save(Object entity) {
		em.persist(entity);
	}

	@Override
	public void update(Object entity) {
		// 當我們的實體bean 變成遊離狀態的時候,進行  更新。
		em.merge(entity);

	}


}

package com.itcast.service.product;

import com.itcast.service.base.DAO;

public interface ProductTypeService extends DAO{

	
}

package com.itcast.service.product.impl;

import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import com.itcast.service.base.DaoSupport;
import com.itcast.service.product.ProductTypeService;

@Service
@Transactional   
public class ProductTypeServiceBean extends DaoSupport implements ProductTypeService {

	
	
}

測試類:

package junit.test;

import junit.framework.Assert;

import org.junit.BeforeClass;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.itcast.bean.ProductType;
import com.itcast.service.product.ProductTypeService;

public class ProductTest {

	private static  ApplicationContext cxt;
	private static  ProductTypeService productService;
	
	@BeforeClass
	public static void setUpBeforeClass() throws Exception {
		try {
			cxt = new ClassPathXmlApplicationContext("beans.xml");
			productService = (ProductTypeService) cxt.getBean("productTypeServiceBean");
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	@Test
	public void testSave() {
		ProductType type = new ProductType();
		type.setName("ttt");
		type.setNote("good,ttt");
		productService.save(type);
	}
	@Test
	public void testFind() {
		ProductType type =  productService.find(ProductType.class, 1);
		Assert.assertNotNull("獲取不到id為1 的記錄",type);
	}
	@Test
	public void testUpdate() {
		ProductType type =  productService.find(ProductType.class, 1);
		type.setName("zuqiu");
		type.setNote("good,zuqiu");
		productService.update(type);
	}
	
	@Test   // 物理刪除。
	public void testDetele() {
		productService.delete(ProductType.class, 1);
	}

}

經過測試,可以正常使用。

儲存方法:

查詢方法:

更新方法:


20節:過載業務管理Bean的刪除方法----這個不是物理刪除。

需知:

 【1】     visible=?1 是位置引數。

【2】     .setParameter(1, false);   1為位置編號(也就是 visible=?1 的 1),false 所設定的引數值是什麼。

【3】      o.typeid   為主鍵id 

package com.itcast.service.product.impl;

import javax.persistence.Query;

import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import com.itcast.service.base.DaoSupport;
import com.itcast.service.product.ProductTypeService;

@Service
@Transactional
public class ProductTypeServiceBean extends DaoSupport implements
		ProductTypeService {

	@Override
	public <T> void delete(Class<T> entityClass, Object[] entityids) {
		if (entityids!=null && entityids.length>0) {
			StringBuffer jpql = new StringBuffer();
			for(int i=0; i < entityids.length;i++){
				jpql.append("?").append(i+2).append(",");
			}
			// 組拼完會多一個逗號,所以要刪除這個逗號。也就是最後一個字元。
			jpql.deleteCharAt(jpql.length()-1);
			// ?2,  ?3 , ?4
			Query query = em.createQuery(
					"update ProductType o set o.visible=?1 where o.typeid in("
							+ jpql.toString() + ")").setParameter(1, false);
			// 對引數進行 設定。 
			for(int i=0; i < entityids.length;i++){
				query.setParameter(i+2, entityids[i]);
			}
			query.executeUpdate();  // 更新一下。
		}
	}

}


配置檔案:可以參考

巴巴運動網 16.