摘要: IDEA执行Get from version control的clone时报错:unable to access 'https://github.com/Blank/xxx.git/': error setting certificate verif 作者亲试解决办法: 在git的bash.exe中 阅读全文
posted @ 2021-09-25 00:49 .Blank 阅读(809) 评论(0) 推荐(0) 编辑
摘要: 以下使用IDEA+MAVEN搭建SSM框架整合的基本配置环境 maven基本结构 src main java com bjpowernode controller service mapper pojo utils resources applicationContext_dao.xml appli 阅读全文
posted @ 2021-08-25 16:55 .Blank 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 以下使用springboot(2.5.3)标准工程实现简单的qq邮箱发送邮件功能 准备工作 开启qq邮箱的POP3/SMTP服务 打开qq邮箱,点击设置->账户->开启POP3/SMTP服务 开启后如图所示: 开启后会有一个动态码,需保存好,之后会用到 实现步骤 导入依赖 <!--javax.mai 阅读全文
posted @ 2021-08-19 22:15 .Blank 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 与MBG的区别 MyBatis 的代码生成器可生成: 实体类、Mapper 接口、Mapper 映射文件 MP 的代码生成器可生成: 实体类(可以选择是否支持 AR)、Mapper 接口、Mapper 映射文件、 Service 层、Controller 层. 相比MBG,MP只需要进行纯Java代 阅读全文
posted @ 2021-08-19 17:27 .Blank 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 出现问题 DataSource自动注入为空 测试代码 @SpringBootTest public class SpringBoot06DataJdbcApplicationTests { @Autowired DataSource dataSource; //这里自动注入为null @Test p 阅读全文
posted @ 2021-08-15 19:31 .Blank 阅读(1492) 评论(0) 推荐(0) 编辑
摘要: 简单MyBatis逆向工程步骤 添加maven依赖 <dependencies> <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <versio 阅读全文
posted @ 2021-08-05 14:50 .Blank 阅读(128) 评论(0) 推荐(0) 编辑