zoukankan      html  css  js  c++  java
  • Could not instantiate bean class [org.springframework.data.domain.Pageable]: Specified class is an interface解决方案

    原文:http://pimin.net/archives/432

    环境:Eclipse LUNA、Spring 4.1.1、或Spring 4.3.3、Spring Data Elasticsearch 1.1.0

    缘由:在调试Spring Data Elasticsearch的时候,希望在查询的时候实现分页查询。传统的方式就是在Controller的参数表中自己获取分页信息,然后组装成Pageable。在Spring Data Elasticsearch官方文档介绍有两种自动化方案:

    1、使用<bean class=”org.springframework.data.web.config.SpringDataWebConfiguration” />

    官方介绍说可以注册DomainClassConverter和HandlerMethodArgumentResolver。

    2、配置org.springframework.data.web.PageableHandlerMethodArgumentResolver

    很遗憾,使用这两种方法后直接报错:

    解决方案,那就是在web-context.xml加入下面的代码

    <mvc:annotation-driven>
    <mvc:argument-resolvers>
    <bean class="org.springframework.data.web.PageableHandlerMethodArgumentResolver" />
    </mvc:argument-resolvers>
    </mvc:annotation-driven>
  • 相关阅读:
    iPhone UIButton图标与文字间距设置【转】
    UIButton左边图片右边文字的做法
    UICollectionViewCell设置阴影
    ARC中__bridge, __bridge__transfer, __bridge_retained 关系
    NSFileHandle的用法(用于读写文件)
    自定义FrameWork
    IOS7 适配以及向下兼容问题
    IOS 7 UITableView cell lines不能靠左解决方法
    xml报错“cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element”
    《Effective Java》笔记 :(一)创建和销毁对象
  • 原文地址:https://www.cnblogs.com/shihaiming/p/6019486.html
Copyright © 2011-2022 走看看