DBuitls驼峰规则

来源:互联网 发布:java中的string 编辑:程序博客网 时间:2024/04/30 14:26

使用下面可以驼峰转换:

QueryRunner queryRunner = new QueryRunner();BeanProcessor bean = new GenerousBeanProcessor();RowProcessor processor = new BasicRowProcessor(bean);List<DeviceDataEntityDTO> list = queryRunner.query(connection, exportSql, new Object[]{new java.sql.Timestamp(beginTime.toDate().getTime()), new java.sql.Timestamp(beginTime.plusHours(1).toDate().getTime())}, new BeanListHandler<DeviceDataEntityDTO>(DeviceDataEntityDTO.class, processor));


原创粉丝点击