You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now only this way:
MyBatisCursorItemReader reader = new MyBatisCursorItemReader();
reader.setSqlSessionFactory(sqlSessionFactory);
reader.setQueryId("xxx.xxx.xxxx.xxxxxxx.mapper.BatchMstEmployeesEntityMapper.exmapleSelect");
reader.setParameterValues(map);
return reader;
Can it be used like in Spring Boot:
BatchTaskEntityExample selectExample = new BatchTaskEntityExample();
BatchTaskEntityExample.Criteria selectCriteria = selectExample1.createCriteria();
selectCriteria.andTaskStatusEqualTo("processing");
selectCriteria.andStartTimeLessThan(maxTime);
List batchs = batchTaskEntityMapper.selectByExample(selectExample);
Thanks
The text was updated successfully, but these errors were encountered:
Now only this way:
MyBatisCursorItemReader reader = new MyBatisCursorItemReader();
reader.setSqlSessionFactory(sqlSessionFactory);
reader.setQueryId("xxx.xxx.xxxx.xxxxxxx.mapper.BatchMstEmployeesEntityMapper.exmapleSelect");
reader.setParameterValues(map);
return reader;
Can it be used like in Spring Boot:
BatchTaskEntityExample selectExample = new BatchTaskEntityExample();
BatchTaskEntityExample.Criteria selectCriteria = selectExample1.createCriteria();
selectCriteria.andTaskStatusEqualTo("processing");
selectCriteria.andStartTimeLessThan(maxTime);
List batchs = batchTaskEntityMapper.selectByExample(selectExample);
Thanks
The text was updated successfully, but these errors were encountered: