mybatis 后台分页实现
?
?
?
?
public BoundSql(Configuration configuration, String sql, List<ParameterMapping> parameterMappings, Object parameterObject) { this.sql = sql; this.parameterMappings = parameterMappings; this.parameterObject = parameterObject; this.additionalParameters = new HashMap<String, Object>(); this.metaParameters = configuration.newMetaObject(additionalParameters); }?所以,必须要先获得configuration,configuration可以通过MappedStatement获得。
1 楼 grandboy 2011-07-14 这个主意不错,收藏一下。 2 楼 dir_murong 2011-09-09 问问lz 在下面这个方法里,一般反射调用的都是配置到xml配置文件里。但是我遇到如下的情况,dao层的数据offset和limit 还是我给的数据,蛋一走到这个方法里的时候,
invocation.getArgs()[2]的RowBounds对象所包含的offset和limit 就变成了0 和2147483647 这是什么情况? 这个是属于mabits 哪里缺乏配置么?
public Object intercept(Invocation invocation) throws Throwable {
processIntercept(invocation.getArgs());
return invocation.proceed();
} 3 楼 qq123zhz 2011-09-09 2147483647 dir_murong 写道问问lz 在下面这个方法里,一般反射调用的都是配置到xml配置文件里。但是我遇到如下的情况,dao层的数据offset和limit 还是我给的数据,蛋一走到这个方法里的时候,
invocation.getArgs()[2]的RowBounds对象所包含的offset和limit 就变成了0 和2147483647 这是什么情况? 这个是属于mabits 哪里缺乏配置么?
public Object intercept(Invocation invocation) throws Throwable {
processIntercept(invocation.getArgs());
return invocation.proceed();
}
这是你struts2的问题吧、、、、