本文記錄如何整合service,包括定義spring接口,在spring容器配置service以及事務控制。讓spring管理service接口。
public interface ItemsService {
//商品查詢列表
List findItemsList(ItemsQueryVo itemsQueryVo) throws Exception;
}
public class ItemsServiceImpl implements ItemsService {
@Autowired
private ItemsMapperCustom itemsMapperCustom;
public List findItemsList(ItemsQueryVo itemsQueryVo) throws Exception {
return itemsMapperCustom.findItemsList(itemsQueryVo);
}
}
在resources/spring
下創建applicationContext-service.xml,文件中配置service。
在resources/spring
下創建applicationContext-transaction.xml,在applicationContext-transaction.xml中使用spring聲明式事務控制方法。