IDEA在进行单元测试时一直阻塞 1.具体表现 简单的做了一个登陆判断想表现一下statement中sql注入的问题,在junit进行测试时,测试方法一直是阻塞状态,简单来说就是一直转圈圈但是控制台无法提示输入信息,如图: 具体原因是因为junit是自动化单元测试,不支持手动的键盘输入。 解决方案一 ...
分类:
其他好文 时间:
2021-04-12 11:56:06
阅读次数:
0
多模块,在使用mybatis-plus时,找不到其他模块的xml 报org.apache.ibatis.binding.BindingException: Invalid bound statement (not found) 错误 发现target下mapper包中的xml文件夹没有被编译,在父工 ...
分类:
编程语言 时间:
2021-04-09 12:59:31
阅读次数:
0
Problem Statement There is an image with a height of H pixels and a width of W pixels. Each of the pixels is represented by either . or *. The charact ...
分类:
其他好文 时间:
2021-04-05 12:52:04
阅读次数:
0
类别 检查项 检查结果 代码 Readability 通过 Duplicated Code 通过 Hard Coding 通过 Long Method(100行) 通过 Long Parameter List(最多4个) 通过 Large Class 通过 Switch Statement 通过 L ...
分类:
其他好文 时间:
2021-03-08 14:04:45
阅读次数:
0
语法错误 原本是 addUser() { this.$refs.addFormRef.validate((valid) => { if (!valid) return // 可以发起添加用户的网络请求 }) 在return后添加false即可 修改后为 addUser() { this.$refs. ...
分类:
其他好文 时间:
2021-03-06 14:57:20
阅读次数:
0
MySql_176. 第二高的薪水 LeetCode_MySql_176 题目描述 题解分析 代码实现 # Write your MySQL query statement below select( select distinct Salary from Employee order by Sal ...
分类:
数据库 时间:
2021-03-02 12:23:52
阅读次数:
0
链接数据库 public static void main(String[] args) { //简约方式 try { Connection conn = DriverManager.getConnection("jdbc:mysql:/mysql?user=aa"); Statement st = ...
分类:
数据库 时间:
2021-03-02 12:02:39
阅读次数:
0
思路 迁移也是运行数据库DDL语句,那么只要在Laravel迁移的语句后面添加自定义DDL语句设置自动递增初始值就好了。 引用DB use Illuminate\Support\Facades\DB; MySQL 以修改users表为例,设置自动递增初始值为例1000 DB::statement(' ...
分类:
其他好文 时间:
2021-03-01 13:16:11
阅读次数:
0
// Project file declarations... //项目文件声明… program MyCompany.ProjectX.ProgramY; // Unit source file declaration... //单元源文件声明 unit MyCompany.ProjectX.Pr ...
UML和设计模式原则 一、概要 设计模式(Design Pattern)是一套被反复使用、多数人知晓的、经过分类的、代码设计经验的总结。 使用设计模式的目的:为了代码可重用性、让代码更容易被他人理解、保证代码可靠性。 设计模式使代码编写真正工程化;设计模式是软件工程的基石脉络,如同大厦的结构一样。可 ...
分类:
其他好文 时间:
2021-01-29 12:00:42
阅读次数:
0