springboot2 ,mybatis-plus 分页插件失效问题

我按照官网上面的例子安装分页查询,可以查询出数据,但是没有任何分页的效果,说明分页插件没起到作用,

官网链接:https://mp.baomidou.com/guide/page.html

springboot2 ,mybatis-plus 分页插件失效问题_第1张图片

page信息错误。

最后的解决办法是@ComponentScan的问题,不是很明白这个和分页插件有什么冲突,如果知道的话,请留言谢谢。

错误代码如下:

@SpringBootApplication
@ComponentScan(basePackages = {"com.example.demo.controller","com.example.demo.service"})
@MapperScan(basePackages = {"com.example.demo.mapper"})
public class DemoApplication {

	public static void main(String[] args) {
		SpringApplication.run(DemoApplication.class, args);
	}

}

正确代码


@SpringBootApplication
//@ComponentScan(basePackages = {"com.example.demo.controller","com.example.demo.service"})
@MapperScan(basePackages = {"com.example.demo.mapper"})
public class DemoApplication {

	public static void main(String[] args) {
		SpringApplication.run(DemoApplication.class, args);
	}

}

项目重启后分页正常了

springboot2 ,mybatis-plus 分页插件失效问题_第2张图片

你可能感兴趣的:(mybatis-plus)