上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页
摘要: 这里踩了一个大坑,因为spring-boot-starter-web这个jar包中已经有tomcat了,所以有一定的机率 导致创建web项目失败, 所以要做一件事,就是把tomcat排除 <dependency> <groupId>org.springframework.boot</groupId> 阅读全文
posted @ 2021-01-10 12:38 田坤坤 阅读(4825) 评论(0) 推荐(0) 编辑
摘要: BufferedInputStream bufferedInputStream = null;ZipOutputStream zipOutputStream = null;OutputStream outputStream = null;try { outputStream = response.g 阅读全文
posted @ 2020-12-23 10:52 田坤坤 阅读(2252) 评论(0) 推荐(0) 编辑
摘要: //时间1Date date = timeSpanVO.getDate();// java.util.Date转换成Instant类型Instant dateInstant = date.toInstant();//将时间1转为年月日LocalDate timeSpanDate = LocalDat 阅读全文
posted @ 2020-12-11 14:53 田坤坤 阅读(1833) 评论(0) 推荐(0) 编辑
摘要: [mysqld] lower_case_table_names=1 阅读全文
posted @ 2020-12-04 14:40 田坤坤 阅读(926) 评论(0) 推荐(0) 编辑
摘要: sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION 阅读全文
posted @ 2020-11-27 11:52 田坤坤 阅读(241) 评论(0) 推荐(0) 编辑
摘要: select concat('delete from ',table_name,';') from information_schema.tables where table_schema='jd_project_sector_test1' and Table_type='BASE TABLE' 其 阅读全文
posted @ 2020-11-16 10:05 田坤坤 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1、 生成publicKey和password 找到maven资源库中druid的jar包,如:C:\Users\a\.m2\repository\com\alibaba\druid\1.1.6,其中a为用户名。 打开cmd,将路径切换至C:\Users\a\.m2\repository\com\a 阅读全文
posted @ 2020-11-05 14:48 田坤坤 阅读(1829) 评论(0) 推荐(0) 编辑
摘要: 报错:Could not autowire. No beans of ‘UserMapper’ type found 原因是Dao为interface 无法通过@Bean加入到容器,也就无法通过@Autowired自动注入解决方法:Dao上加上@Repository 它用于将数据访问层 (DAO 层 阅读全文
posted @ 2020-09-08 17:52 田坤坤 阅读(1400) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/jiao_mrswang/article/details/99315632 阅读全文
posted @ 2020-07-30 09:47 田坤坤 阅读(1590) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zsh-blogs/p/11497720.html 阅读全文
posted @ 2020-07-30 09:30 田坤坤 阅读(89) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页