摘要:
例如需要实现一个形如下面的sql:select * from table where a='a' and b='b' order by c asc,d desc;就是根据两个条件进行排序。在spring data for jpa 中,存在一个pageable接口,是对查询分页的一个利器。pageable实现类的构造方法中有个Sort参数,可以按照列属性进行排序。通过查看Sort类的构造方法,我们对Sort这个类进行一下分析,Sort类中存在一下几个构造方法:1.publicSort(Order... orders);2.publicSort(List<Or 阅读全文
摘要:
spring 配置junit 启动时出现 ClassNotFound警告:警告: Failed to classload type while reading annotation metadata. This is a non-fatal error, but certain annotation metadata may be unavailable. java.lang.ClassNotFoundException: org.testng.annotations.BeforeTest解决方法:将eclipse自带的junit和org.hamcrest.core.jar复制到项目的WEB- 阅读全文