一个try代码块后面跟着多个catch代码块的情况就叫多重捕获 语法 try{ //可能发生异常的代码块 }catch(ExceptionName1 e1){ // 出异常时候处理 }catch(ExceptionName2 e2){ // 出异常时候处理 } 代码中发生异常,异常被抛给第一个cat ...
分类:
编程语言 时间:
2021-07-19 16:50:39
阅读次数:
0
cat CentOS-Base.repo # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to p ...
分类:
其他好文 时间:
2021-07-19 16:46:42
阅读次数:
0
SOAP 协议介绍 Simple Object Access Protocol,简单对象访问协议 一种轻量的、简单的、基于 XML 的协议 SOAP 跟 HTTP、SMTP 等一样 是一种传输协议 **WebService 三要素:**SOAP、WSDL、UDDI 使用 Jmeter 做 soap ...
分类:
其他好文 时间:
2021-07-16 17:30:53
阅读次数:
0
1.抽取进程延时 2.过程时间分析脚本 [oracle@node2 dirdat]$ cat test01.sh #!/bin/bash echo "sql before time is "`date`>> test.log sqlplus / as sysdba <<EOF @1.sql EOF ...
分类:
其他好文 时间:
2021-07-13 17:42:29
阅读次数:
0
Docker从1.13版本之后采用时间线的方式作为版本号,分为社区版CE和企业版EE。 社区版是免费提供给个人开发者和小型团体使用的,企业版会提供额外的收费服务,比如经过官方测试认证过的基础设施、容器、插件等。 社区版按照stable和edge两种方式发布,每个季度更新stable版本,如17.06 ...
分类:
其他好文 时间:
2021-07-13 17:41:39
阅读次数:
0
本文参考内容: https://www.mindspore.cn/doc/programming_guide/zh-CN/r1.2/advanced_usage_of_checkpoint.html?highlight=save_checkpoint 有官方文档内容可知,我们对网络参数的保存不仅可以 ...
分类:
其他好文 时间:
2021-07-12 18:27:04
阅读次数:
0
1、下载 node 可以自己下载 node 镜像: https://npm.taobao.org/mirrors/node/ 或直接在命令行运行以下命令: wget https://npm.taobao.org/mirrors/node/v14.15.0/node-v14.15.0-linux-x6 ...
分类:
其他好文 时间:
2021-07-05 18:26:28
阅读次数:
0
通过application类中的main方法里面的run方法 @SpringBootApplication @ServletComponentScan(basePackages = "com.sp") //可以自动将写的servlet扫描进去 配置扫描的包 @MapperScan("com.sp.m ...
分类:
编程语言 时间:
2021-07-05 17:22:51
阅读次数:
0
存在重复元素 题目链接: leetcode 给定一个整数数组,判断是否存在重复元素。 如果存在一值在数组中出现至少两次,函数返回 true 。 如果数组中每个元素都不相同,则返回 false 。 最简单的就是直接用哈希表,从左往右遍历,检测哈希表是否存在当前元素。 存在就直接返回false,不存在就 ...
分类:
其他好文 时间:
2021-07-05 17:13:27
阅读次数:
0
1.问题: Warning: Permanently added 'github.com' (RSA) to the list of known hosts. git@github.com: Permission denied (publickey). fatal: Could not read f ...
分类:
其他好文 时间:
2021-07-05 16:56:22
阅读次数:
0