摘要:
上传下载查看 导出 如何向XWPFTableCell添加边框 https://www.thinbug.com/q/30210373 阅读全文
摘要:
![image](https://img2020.cnblogs.com/blog/1486554/202111/1486554-20211122102609096-418657407.png) 阅读全文
摘要:
常用查看日志命令 tail tail -f /var/log/apache2/access.log 通常 Linux 服务器上的日志都是轮转日志。这种情况下,你需要用 -F 参数。 tail -F 会监控是否创建了新日志(所谓新日志指的是同一个名字,但是 fd 不一样的日志文件),并且会转而显示新日 阅读全文
摘要:
前言 Spring声明式事物的实现,有两种方式;第一种是配置xml,第二种是使用相关注解(这两种方式可详见《程序员成长笔记(一)》的相关章节)。SpringBoot中默认配置了第二种方式,所以,SpringBoot直接使用注解即可。下面介绍SpringBoot通过注解开启事物的使用。 SpringB 阅读全文
摘要:
electerm github地址 https://electerm.github.io/electerm/ 阅读全文
摘要:
网址 https://www.jcp.org/ 在右上角输入框,输入servlet 3.0 (中间有空格) 回车可以看到 点击 如图 两个都可以下载 下载的时候需要同意 下载完就是这样的 阅读全文
摘要:
输入 https://spring.io/ 点击 spring framework 点进去是这样 切换到如图 点击github图标 拉到最下边,找到如图,点击 跳转到如图 拉到最下边,点击如图 会跳转到 https://repo.spring.io/ui/packages 点击如图 找到relaea 阅读全文
摘要:
代码 public class MergeSort { public static void main(String[] args) { // int[] arr = {8,4,5,7,1,3,2,6}; // int[] temp = new int[arr.length]; // System. 阅读全文
摘要:
代码 public static void quickSort(int[] arr,int left,int right){ int l = left; int r = right; //pivot 中轴值 int pivot = arr[(left + right) / 2]; int temp 阅读全文
摘要:
交换式 代码 protected static void shellSort1(int[] arr) { int temp = 0; for(int gap = arr.length / 2;gap > 0; gap /= 2){ for(int i = gap;i < arr.length; i 阅读全文