摘要:
在springboot项目中使用通用mapper导致报错:tk.mybatis.mapper.MapperException:无法获取实体类xxx对应的表名! 原因: @MapperScan注解要导入itk.mybatis.spring.annotation.MapperScan;不要使用org.m 阅读全文
摘要:
Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' which is not functiona 阅读全文
摘要:
数据库 validationQuery Oracle select 1 from dual DB2 select 1 from sysibm.sysdummy1 mysql select 1 microsoft sql select 1 hsqldb select 1 from INFORMATION_SCHEMA.SYSTEM_USERS postgres... 阅读全文
摘要:
1.mybatis调用oracle存储过程 2.mybatis调用SQLServer存储过程 阅读全文
摘要:
第一种方法:自定义消息转换器 1 @Configuration 2 public class WebMvcConfig extends WebMvcConfigurerAdapter{ 3 4 5 // /** 6 // * 利用fastjson替换掉jackson 7 // * @param co 阅读全文
摘要:
1.进入mysql容器中 docker exec -it mysqltest(mysql容器名称) bash 2.进入mysql数据库 mysql -uroot -p 3.输入mysql密码 4.远程连接授权 mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@ 阅读全文
摘要:
docker官方文档地址:https://docs.docker.com/install/linux/docker-ce/centos/ docker镜像加速器地址:https://www.daocloud.io/mirror docker中国镜像加速地址:https://www.docker-cn 阅读全文
摘要:
在项目中使用restful风格put提交时报错,是由于form表单中的th:href引起的(支持post提交),改为th:action即可 阅读全文
摘要:
/** * 去重list中的重复元素 * @param list * @return */ public static List removeRepeat(List list){ Set set = new HashSet(list); list.clear(); list.addAll(s... 阅读全文
摘要:
java代码调用mapper接口时,标红的sql是在mapper.xml文件中写,没有调用PageHelper.startPage方法,但是执行时自动在外面又套了一层PageHelper的分页, 报错,ORA-01008: 并非所有变量都已绑定,最终的原因是传入的参数pageNum和pageSize 阅读全文