public class Test { public static void main(String[] args) throws InterruptedException { TwoPhaseTermination tpt = new TwoPhaseTermination(); tpt.star ...
分类:
其他好文 时间:
2021-05-24 13:06:08
阅读次数:
0
前因 项目一直使用的是PageHelper实现分页功能,项目前期数据量较少一直没有什么问题。随着业务扩增,数据库扩增PageHelper出现了明显的性能问题。 几十万甚至上百万的单表数据查询性能缓慢,需要几秒乃至十几秒的查询时间。故此特地研究了一下PageHelper源码,查找PageHelper分 ...
分类:
其他好文 时间:
2021-05-24 09:07:25
阅读次数:
0
Now our job as programmers changes from figuring out the rules, to determining the activities, to writing the code that matches the data to the labels ...
分类:
其他好文 时间:
2021-04-20 15:41:14
阅读次数:
0
Extracted from the BNC Manual AJ0adjective (general or positive) e.g. good, oldAJCcomparative adjective e.g. better, olderAJSsuperlative adjective, e. ...
分类:
其他好文 时间:
2021-02-18 13:21:16
阅读次数:
0
Valid Anagram (E) 题目 Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Input: s = "anagram", t = "nagaram" ...
分类:
其他好文 时间:
2021-02-15 12:41:17
阅读次数:
0
pytest允许在多个级别启用测试参数化: pytest.fixture() 允许fixture有参数化功能(后面讲解) @pytest.mark.parametrize 允许在测试函数或类中定义多组参数和fixtures pytest_generate_tests 允许定义自定义参数化方案或扩展( ...
分类:
其他好文 时间:
2021-02-04 12:03:09
阅读次数:
0
Mybatis是目前开发中最常用的一款基于ORM思想的半自动持久层框架,平时我们都仅仅停留在使用阶段,对mybatis是怎样运行的并不清楚,今天抽空找到一些资料自学了一波,自己写了一个mybatis的雏形,在此对学习过程做一个记录首先,我们新建一个提供mybatis框架功能的工程IMybatis,这 ...
分类:
其他好文 时间:
2021-01-25 10:47:02
阅读次数:
0
IfcSurfaceOfRevolution是通过绕轴旋转曲线而得到的曲面。 注:定义根据ISO/CD 10303-42:1992 旋转曲面是将曲线绕轴旋转一整圈而得到的曲面。数据解释如下。 参数化如下,其中曲线具有参数化λ(u): C = AxisPosition.LocationV = Axis ...
分类:
其他好文 时间:
2020-11-16 13:49:13
阅读次数:
9
随着Android的不断更新,老旧的布局页面已经过时,这就使得复杂的布局实现起来有些难度,在此记录一下手机中最常见的复杂界面实现方法。 最终效果 本文主要通过分析最新版AS下new project的Srolling Activity和Tabbed Activity布局方式,并查阅网上资料得以实现。其 ...
分类:
其他好文 时间:
2020-11-07 16:53:51
阅读次数:
25
1、拉取一个项目的代码在本地运行,调用接口时报错: org.springframework.dao.DataIntegrityViolationException: Error attempting to get column 'type' from result set. Cause: java. ...
分类:
其他好文 时间:
2020-08-01 21:36:18
阅读次数:
317