09 2021 档案
发表于 2021-09-23 16:19阅读:75评论:0推荐:0
摘要:sql 练习 -- mysql 锁表查询 -- SELECT * FROM information_schema.INNODB_TRX; -- kill trx_mysql_thread_id -- 创建部门表 DROP TABLE IF EXISTS dept; CREATE TABLE dept
阅读全文 »
发表于 2021-09-16 10:35阅读:967评论:0推荐:0
摘要:说明: 很明显,实体设置的是Date类型,但是页面是以字符串的形式将日期字符串转换为实体字段导致的不匹配。 解决办法: @InitBinder public void initBinder(WebDataBinder binder) { SimpleDateFormat dateFormat = n
阅读全文 »
发表于 2021-09-06 17:56阅读:49评论:0推荐:0
摘要:public class FullValue<D,T> { public static void main(String[] args) throws Exception { Student student = new Student(); student.setId(UUID.randomUUID
阅读全文 »