这篇讲解Spock自带的mock功能如何和power mock组合使用,发挥更强大的作用 动态Mock静态方法 (Spock Where + Power Mock) 在上一篇的例子中使用power mock让静态方法返回一个指定的值,那能不能每次返回不同的值呢? 我们先看下什么场景需要这样做: /* ...
分类:
其他好文 时间:
2020-12-08 12:36:48
阅读次数:
7
1、字段包含中文 select * from table1 where 列名 like '%[吖-座]%' 2.字段包含英文字符 select * from table1 where 列名 like '%[a-z]%' 3.字段包含纯数字 select * from table1 where 列名 ...
分类:
数据库 时间:
2020-12-07 12:23:40
阅读次数:
10
直接新建个文件即可 ExLogic.cs public class ExLogic { #region 对象转成字典 /// <summary> /// 对象转换为字典 /// </summary> /// <param name="obj">待转化的对象</param> /// <returns> ...
分类:
其他好文 时间:
2020-12-07 12:20:51
阅读次数:
7
金蝶数据推送ebei 记录日志到数据库(Oracle)定时清理数据。 1 建立存储过程,执行删除操作,删除小于系统时间的所有数据。create or replace procedure DeleteDataForJobbegin delete from gps_map where servertim ...
分类:
数据库 时间:
2020-12-05 11:01:26
阅读次数:
8
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endp ...
分类:
其他好文 时间:
2020-12-04 11:23:41
阅读次数:
6
之前工作的时候,写错了一条sql,判断某varchar类型的字段=2,结果匹配了很多条数据,比如 select tt from table1 where tt = 2; 结果集tt中 有 “2sssss”、“2dddddd”等。当时是很好奇,后面去查阅了资料,才发现这是mysql隐式转换导致的。 那 ...
分类:
其他好文 时间:
2020-12-04 10:53:50
阅读次数:
6
4.SAP HANA SQL Script 4.1 Orchestration Logic 1.Orchestration Logic 示例:orchestrationProc CREATE PROCEDURE orchestrationProc LANGUAGE SQLSCRIPT READS S ...
分类:
数据库 时间:
2020-12-03 11:43:29
阅读次数:
10
主键约束 SQL> alter table customers add constraint customers_pk primary key (customer_id); Table altered. col constraint_name for a30 col constraint_type ...
分类:
数据库 时间:
2020-12-01 12:20:58
阅读次数:
12
这个题目比较坑,没有描述清楚 create TABLE #TB ( ID INT, 科目 int, 成绩 int ) select * from #TB insert into #TB(ID,科目,成绩) select 1,66,66 union select 1,55,55 union selec ...
分类:
其他好文 时间:
2020-12-01 12:15:35
阅读次数:
4
近期在做业务的时候用到了MongDB非关系型数据库一般用来存储聊天记录或者消息推送或者日志记录等等,话不多说直接上代码 首先先导入 pom 文件 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-b ...
分类:
数据库 时间:
2020-12-01 12:01:24
阅读次数:
9