Plugins注册完之后出异常显示classNotFound
Configuration.xml文件的配置信息如下:
<plugins> <plugin interceptor="com.imooc.interceptor.PageInterceptor"/> </plugins>
如果不写以上三行可以实现查询只是没有分页功能。
写了以上三句之后报错信息如下:
### Error building SqlSession.
### The error may exist in SQL Mapper Configuration
### Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'com.imooc.interceptor.PageInterceptor'. Cause: java.lang.ClassNotFoundException: Cannot find class: com.imooc.interceptor.PageInterceptor
报错信息显示找不到类,可是我的类明明是存在的,配置的路径也没错。
包结构目录如下: