
Mybatis
Mr_Wu141242
这个作者很懒,什么都没留下…
展开
-
MyBatis中的RowBounds
使用RowBounds分页查询实例: public List<ConfigEntity> selectConfigList(ConfigEntity configEntity, int limit, int start) { RowBounds rowBounds = new RowBounds(start, limit); return getSqlSession().selectList(NAME_SPACE + ".selectConfigList"原创 2020-12-21 21:54:22 · 459 阅读 · 0 评论 -
The expression ‘idList’ evaluated to a null value.
The expression ‘idList’ evaluated to a null value. 报错代码 @Override public int updateForwardByID(List<Long> idList) { return this.getSqlSession().update(NAMESPACE+".updateForwardByID",idList); } <update id="updateForwardByID"原创 2020-11-12 15:31:11 · 1657 阅读 · 1 评论