If you are new to YAML, here is a useful link to a blog on YAML. YAML tutorial Here is a free tool that was mentioned in the video that can convert YA ...
分类:
其他好文 时间:
2021-05-04 16:11:49
阅读次数:
0
代码如下: /** * 死锁 * */ public class DeadThread { private static Object obj1 = new Object(); private static Object obj2 = new Object(); public static void ...
分类:
其他好文 时间:
2021-05-04 15:54:07
阅读次数:
0
支持s3是cubestore 一个很不错的特性,可以提高系统的扩展性 参考修改 主要是添加endpoint 以及配置使用path格式请求 s3.rs impl S3RemoteFs { pub fn new( dir: PathBuf, region: String, endpoint:String ...
分类:
其他好文 时间:
2021-05-04 15:33:00
阅读次数:
0
import axios from "axios"; import { getOssTicket } from "@/pages/mb/constants/API"; // 拿到ticket const getTicket = function (): any { return new Promis ...
分类:
Web程序 时间:
2021-05-04 15:31:21
阅读次数:
0
//添加资源图片 右键项目->添加文件->Qt->QtResourceFile->起名称->添加前缀->添加文件 ui->actionopen->setIcon(QIcon(":/images/icon/1.png")); //设置对话框 //点击新建按钮弹出对话框 connect(ui->acti ...
分类:
其他好文 时间:
2021-05-04 15:29:11
阅读次数:
0
接下来我们来看看Java中的异常,想必大家多多少少都会听说过这样一个异常叫做空指针异常,我们来看代码演示: NullPointerException nullPointerException = new NullPointerException("空指针异常"); System.out.printl ...
分类:
编程语言 时间:
2021-05-04 15:26:38
阅读次数:
0
公平锁,非公平锁 公平锁:非常公平,不能插队,必须先来后到 //参数写为true,就表示公平锁(不写默认就是非公平锁) public ReentrantLock(boolean fair) { sync = fair ? new FairSync() : new NonfairSync(); } 非 ...
分类:
其他好文 时间:
2021-05-04 15:15:22
阅读次数:
0
代码结构: package com.java.spring; /** * 自定义InitializingBean * 作用:做初始化操作 */ public interface IInitializingBean { void afterPropertiesSet() throws Exceptio ...
分类:
编程语言 时间:
2021-05-03 12:55:47
阅读次数:
0
import java.io.*; //复制文件 public class BufferStream1 { public static void main(String[] args) throws IOException { BufferedReader bufferedReader = new ...
分类:
编程语言 时间:
2021-05-03 12:34:10
阅读次数:
0
import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; //字节流复制文件 public class FileInputStream2 { public static v ...
分类:
编程语言 时间:
2021-05-03 12:33:00
阅读次数:
0