SSM全注解方式使用PageHelper实现分页查询(日志为例)

Dept 1. 添加依赖

<dependency>

<groupId>com.github.pagehelper</groupId>

<artifactId>pagehelper</artifactId>

<version>5.1.2</version>

</dependency>

Dept2: 配置环境

package com.db.common.config;

/**

 * 注解配置应用说明:

 * @ComponentScan 修饰配置类,用于定义要对哪些保重类型进行扫描,

 * 属性value指定具体要扫描的包,属性excludeFilters表示对扫描包中的哪些类不进行加载

 *

 * 其中Controller.class,ControllerAdvice.class

 * 为web请求层spring中的常用注解

 */

@ComponentScan(//@Component,@Controller,@Service,@Configuration...

value="com.db",

//要排除加载的类(例如使用controller注解修饰的类不进行加载)

excludeFilters={

@Filter(type=FilterType.ANNOTATION,//约束classes属性中的内容

classes={Controller.class,

ControllerAdvice.class})})//<context:component-scan base-package="com.jt"/>



public class AppRootConfig {//取代spring-configs.xml

}



package com.db.common.config;

@Configuration

@MapperScan(basePackages="com.db.**.dao")

/**等上

 * @Bean

public MapperScannerConfigurer getScanner(){

MapperScannerConfigurer scanner=new MapperScannerConfigurer();

scanner.setBasePackage("com.db.**.dao");

return scanner;

} */

public class AppMyBatisConfig {

/**配置PageInterceptor插件*/

@Bean

public PageInterceptor getPageInterceptor(){

PageInterceptor pageIntercptor=new PageInterceptor();

Properties properties=new Properties();

properties.setProperty("value", "true");

pageIntercptor.setProperties(properties);

return pageIntercptor;

}

@Bean("sqlSession
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值