1. 当前连接会话数以及当前并发连接个数 -- 当前活跃用户会话数Select count(*) from v$session where status='ACTIVE' and USERNAME is not null;-- 当前活跃系统会话数Select count(*) from v$sess ...
分类:
数据库 时间:
2021-06-25 17:21:32
阅读次数:
0
分类目录 软技能 软技能 QUOTES FOR SOFTWARE ENGINEERS 有趣且值得反思的 软件工程 名言 ...
分类:
Web程序 时间:
2021-06-25 17:20:41
阅读次数:
0
这个错误的出现一般是SpringBoot的启动类(类名上面有@SpringBootApplication注解 )与controller包不在同一个目录下,解决方案就是把启动类和controller包放在同目录下就可以啦。 这个错误出现需要将Controller层中的@Controller注解改为@R ...
分类:
移动开发 时间:
2021-06-25 16:59:24
阅读次数:
0
转自链接:https://www.jianshu.com/p/1b61ea6098cd作者:憨憨憨豆业务背景介绍 SAP提供BOM反查标准代码为CS15,该CS15可实现物料单层反查BOM和多层反查BOM,以及相应需求数量/结果数量计算;不过SAP未提供批量的反查功能,对此本人大致研究了一下标准程序 ...
分类:
其他好文 时间:
2021-06-24 18:02:23
阅读次数:
0
1、oracle中用户密码复杂度配置 1)查看参数 select limit from dba_profiles where resource_name='PASSWORD_VERIFY_FUNCTION' and profile in (select profile from dba_users ...
分类:
数据库 时间:
2021-06-24 17:35:08
阅读次数:
0
最近是我党100周年的伟大日志,比较注重虚机安全。记录一下操作,方便后续虚机整理。 1、systemctl status firewalld 看一下防火墙状态,该开启的开启 开防火墙 systemctl start firewalld iptables 和 firewalld的区别先百度一下吧,不多 ...
分类:
其他好文 时间:
2021-06-23 17:16:07
阅读次数:
0
//获取标准输出//第一种result = sh returnStdout: true ,script: "<shell command>"result = result.trim()//第二种result = sh(script: "<shell command>", returnStdout: ...
分类:
系统相关 时间:
2021-06-23 17:14:46
阅读次数:
0
2021-04-2711:01:23.286 ERROR 12572 [nio-8077-exec-5] o.s.b.w.servlet.support.ErrorPageFilter: Cannot forward to error page for request [/check/checkev ...
分类:
其他好文 时间:
2021-06-23 16:47:55
阅读次数:
0
var obj = { foo: function () { console.log(this.bar) }, bar: 1 }; var foo = obj.foo; var bar = 2; obj.foo() // 1 foo() // 2 obj.foo()和foo() 是同一个函数,为什么 ...
分类:
编程语言 时间:
2021-06-22 18:30:25
阅读次数:
0
1.Object.prototype.tosString.call(); 最确定 使用最广 例子:console.log(Object.prototype.toString.call([])); 2.instanceof JS语法 和数组Array进行比较判断 例子:console.log([] i ...
分类:
编程语言 时间:
2021-06-22 18:14:25
阅读次数:
0