spring boot使用PageHelper的方法(2):

第一种方法:
1、在pom.xml那边写上下面那一段作为依赖:

 
	com.github.pagehelper 
	pagehelper-spring-boot-starter 
	1.2.5

2、还要去application.yml文件里面写上一下这句话(如这里出现报错pom.xml那边的依赖换其他版本的分页):

pagehelper:
			 helperDialect: mysql
			 reasonable: true
			 supportMethodsArguments: true
			 params: count=countSql

第二种方法:
1、pom.xml里面写上下面一段来依赖:`

 
	com.github.pagehelper 
	pagehelper 
	4.1.0

2、去spring boot 启动类那边写上一下代码,就不用写其他配置了:

	@Bean
	public PageHelper pageHelper() {
		PageHelper pageHelper = new PageHelper();
		Properties p = new Properties();
		p.setProperty("offsetAsPageNum", "true");
		p.setProperty("rowBoundsWithCount", "true");
		p.setProperty("reasonable", "true");
		p.setProperty("dialect","mysql");
		pageHelper.setProperties(p);
		return pageHelper;
	}

你可能感兴趣的:(干货,spring,boot)