摘要:
背景: Mayabtis+springboot项目,连接数据库发生异常 报错内容: java.lang.AbstractMethodError: Receiver class com.mchange.v2.c3p0.impl.NewProxyResultSet does not define or 阅读全文
摘要:
Mysql 语句 1. 模糊查询 所查询字段 + like '%米%' eg:select * from user where realname like '%米%' Mabatis语句 1. 模糊查询 SELECT * FROM table WHERE name LIKE CONCAT(CONCA 阅读全文
摘要:
错误信息 Description: Field areaService in com.imooc.demo.web.AreaController required a bean of type 'com.imooc.demo.service.AreaService' that could not b 阅读全文
摘要:
背景介绍: 把项目在新的电脑上运行,MySQL版本不同出现错误 错误: 报错The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone. You must... 原因: 是使 阅读全文
摘要:
一、把日期转换成字符串 //获取当前时间 Date date = new Date(); //打印date数据类型 System.out.println(date.getClass().getName()); //打印当前时间 System.out.println(date); //设置转换格式 S 阅读全文