关于SpringBoot 2.0,Pageable 无法注入,提示缺少默认构造方法的解决办法

Posted 高因咖啡

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于SpringBoot 2.0,Pageable 无法注入,提示缺少默认构造方法的解决办法相关的知识,希望对你有一定的参考价值。

 在SpringBoot 2.0 以前,我们会配置以下类

 * @date 2018/06/03
 */
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter

 

可见方法已经过期,SpringBoot 2.0 建议继承此配置类

 * @date 2018/06/03
 */
@Configuration
public class WebMvcConfig extends WebMvcConfigurationSupport {

 

然后你会发现Controller中无法注入Pageable了,错误提示如下

No primary or default constructor found for interface org.springframework.data.domain.Pageable

解决办法

  @Override
    public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers) {
        // 注册Spring data jpa pageable的参数分解器
        argumentResolvers.add(new PageableHandlerMethodArgumentResolver());
    }

 

以上是关于关于SpringBoot 2.0,Pageable 无法注入,提示缺少默认构造方法的解决办法的主要内容,如果未能解决你的问题,请参考以下文章

springboot+jpa分页插件(Pageable+Page)

Spring Boot:以 Pageable 作为请求参数的 @GetMapping 无法按预期工作

springBoot JPA PageAble分页查询出错,PropertyReferenceException: No property creation found for type

Spring Boot - Jpa Distinct 和 Pageable

Spring Boot 2.0 整合 ES 5 文章内容搜索实战

Spring Boot,MongoDB,Pageable,按对象中的自定义方法排序