大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
在@Query注解注释的JPQL语句中写limit语句是会报错的
塔河网站建设公司创新互联建站,塔河网站设计制作,有大型网站制作公司丰富经验。已为塔河千余家提供企业网站建设服务。企业网站搭建\外贸营销网站建设要多少钱,请找那个售后服务好的塔河做网站的公司定做!unexpected token :limit near line ....
解决方法是讲@Query注解中的limit语句去掉,然后传一个Pageable pageable=new PageRequest(offset,limit)进去
示例代码:
controller
import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping(value = "/misaka") public class MisakaController { @Autowired private MisakaService misakaService; @RequestMapping(value = "/list") public ListgetBaselineOverview() { return misakaService.getMisaka(); } }