All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.springdatajpa.zujijpa.utils.JpaHelper Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package top.springdatajpa.zujijpa.utils;

import lombok.experimental.UtilityClass;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageImpl;
import org.springframework.data.domain.PageRequest;

import java.util.List;

/**
 * 

* JPA Helper *

* * @author azheng * @since 2019-10-10 */ @UtilityClass public class JpaHelper { public Page castPage(Page pageList, PageRequest page, Class toClass){ List result = EntityUtils.cast(pageList.getContent(), toClass); return new PageImpl(result, page, pageList.getTotalElements()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy