weiyongh
weiyongh
Thanks for such a great ORM library. Now I use requery for different OS such as windows, linux, android. It is cool when I put it in GraalVM native environement....
I test pub/sub in java handler. now I want to do pub/sub in tomcat web application. is it possible? thanks.
环境:pagehelper 1.1.1, spring boot 1.5.3 , mysql5.7 mybatis-spring-boot-test-autoconfigure 使用mybatis generator, 生成domain,example,mapper,编写service; 在@SpringBootApplication主入口程序的 @Override public void run(String... arg0) throws Exception { 中调用分页service方法,日志打印正常分页,证明包引入和配置无误; 然而在单元测试中,发现没有limit和count注入sql, mapper查询方法返回的list无法cast成page对象,仍是ArrayList。 测试代码如下: @Import(xxServiceImpl.class) public class xxServiceImplTest { @Autowired...