摘要:
这个方法根据ID mybatis plus 自带的 selectOne 方法错误 最终定位原因是xml文件里有个selectList 查询语句 原因是selectOne 调用的selectList 被覆盖 阅读全文
摘要:
举例 :service层方法 for(int i= 0;i<userList.size();i++){ try{ //循环体内事务必须另开一个类 writeOne(userList.get(i),customerList.get(i),customerPersonList.get(i)); }cat 阅读全文
摘要:
项目的springBoot是使用class配置的链接数据库dao接口和配置 上图是简单springBoot 启动报的错误信息 经过一步步debug 发现是在druidDataSource 数据库配置的setDriverClassName 和setUrl 两个属性为空 修改即可 阅读全文