天天看點

springboot 內建,pagehelper分頁插件不起作用java.lang.ClassCastException: java.util.ArrayList cannot be cast to

springboot 內建,pagehelper分頁插件不起作用java.lang.ClassCastException: java.util.ArrayList cannot be cast to com.github.pagehelper.Page

是因為你少添加了一個依賴。

<dependency>
			<groupId>com.github.pagehelper</groupId>
			<artifactId>
				pagehelper-spring-boot-autoconfigure
			</artifactId>
			<version>1.2.5</version>
</dependency>
           

繼續閱讀