package org.xmx0632.deliciousfruit.service.task; import java.util.List; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Sort; import org.springframework.data.domain.Sort.Direction; import org.springframework.data.jpa.domain.Specification; import org.springframework.stereotype.Component; import org.springframework.transaction.annotation.Transactional; import org.xmx0632.deliciousfruit.entity.Task; import org.xmx0632.deliciousfruit.repository.TaskDao; import org.springside.modules.persistence.DynamicSpecifications; import org.springside.modules.persistence.SearchFilter; import org.springside.modules.persistence.SearchFilter.Operator; //Spring Bean的标识. @Component // 默认将类中的所有public函数纳入事务管理. @Transactional(readOnly = true) public class TaskService { private TaskDao taskDao; public Task getTask(Long id) { return taskDao.findOne(id); } @Transactional(readOnly = false) public void saveTask(Task entity) { taskDao.save(entity); } @Transactional(readOnly = false) public void deleteTask(Long id) { taskDao.delete(id); } public List<Task> getAllTask() { return (List<Task>) taskDao.findAll(); } public Page<Task> getUserTask(Long userId, Map<String, Object> filterParams, int pageNumber, int pageSize, String sortType) { PageRequest pageRequest = buildPageRequest(pageNumber, pageSize, sortType); Specification<Task> spec = buildSpecification(userId, filterParams); return taskDao.findAll(spec, pageRequest); } /** * 创建分页请求. */ private PageRequest buildPageRequest(int pageNumber, int pagzSize, String sortType) { Sort sort = null; if ("auto".equals(sortType)) { sort = new Sort(Direction.DESC, "id"); } else if ("title".equals(sortType)) { sort = new Sort(Direction.ASC, "title"); } return new PageRequest(pageNumber - 1, pagzSize, sort); } /** * 创建动态查询条件组合. */ private Specification<Task> buildSpecification(Long userId, Map<String, Object> filterParams) { Map<String, SearchFilter> filters = SearchFilter.parse(filterParams); filters.put("user.id", new SearchFilter("user.id", Operator.EQ, userId)); Specification<Task> spec = DynamicSpecifications.bySearchFilter( filters.values(), Task.class); return spec; } @Autowired public void setTaskDao(TaskDao taskDao) { this.taskDao = taskDao; } }