摘要: $ subscription-manager register --auto-attach --username=**** --password=***** 加入Redhat linux开发者社区 打开官网https://developers.redhat.com/点击login登录,然后点击“RE 阅读全文
posted @ 2020-05-30 14:22 奥兰王子 阅读(5355) 评论(0) 推荐(0) 编辑
摘要: spring: application: name: appname servlet: multipart: enabled: true max-file-size: 512MB max-request-size: 512MB @ExceptionHandler public String hand 阅读全文
posted @ 2020-05-30 14:12 奥兰王子 阅读(381) 评论(0) 推荐(0) 编辑
摘要: DB Pluggable Database是12c中扛鼎的一个新特性, 但是对于CDB中的PDB,默认启动CDB时不会将所有的PDB带起来,这样我们就需要手动alter pluggable database ALL OPEN; 例如: SQL> shutdown immediate; Databas 阅读全文
posted @ 2020-05-30 14:11 奥兰王子 阅读(814) 评论(0) 推荐(0) 编辑
摘要: PS D:\MyProject> yarnyarn install v1.17.3[1/4] Resolving packages...[2/4] Fetching packages...error An unexpected error occurred: "https://registry.np 阅读全文
posted @ 2020-05-29 18:30 奥兰王子 阅读(1929) 评论(0) 推荐(0) 编辑
摘要: 1、准备 使用2台虚拟机或物理机器,操作系统如下: Windows Server 2016 Standard 简称:Win2016 IP:192.168.1.5 CentOS Linux release 7.3.1611 (Core) 简称:CentOS7 IP:192.168.1.6 2、创建文件 阅读全文
posted @ 2020-05-29 13:30 奥兰王子 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 从Win10包中找到sxs的目录,并将目录的所有内容复制到本地计算机中的c:\中。 控制台窗口中执行命令: Dism /online /enable-feature /featurename:Netfx3 /source:c:\sxs 参考资料: https://itnews.jp/?p=13353 阅读全文
posted @ 2020-05-29 11:39 奥兰王子 阅读(654) 评论(0) 推荐(0) 编辑
摘要: 跨域脚本攻击 XSS 是最常见、危害最大的网页安全漏洞。 为了防止它们,要采取很多编程措施,非常麻烦。很多人提出,能不能根本上解决问题,浏览器自动禁止外部注入恶意脚本? 这就是"网页安全政策"(Content Security Policy,缩写 CSP)的来历。本文详细介绍如何使用 CSP 防止 阅读全文
posted @ 2020-05-27 14:23 奥兰王子 阅读(329) 评论(0) 推荐(0) 编辑
摘要: Visual Studio版本 .NET Framework版本 内部版本 VC++版本 C#版本 Visual Studio 2002 .NET Framework1.0 7.0 VC++2002 VC#1.0 Visual Studio 2003 .NET Framework1.1 7.1 VC 阅读全文
posted @ 2020-05-26 14:21 奥兰王子 阅读(1312) 评论(0) 推荐(1) 编辑
摘要: function getUrlParam(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r != nul 阅读全文
posted @ 2020-05-26 13:17 奥兰王子 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 1、 IIS 中请求限制的默认值是300M ,所以上传文件时会失败。 2、 修改方法详见下面内容。 3、 修改完成后请重启IIS 。 阅读全文
posted @ 2020-05-26 12:54 奥兰王子 阅读(453) 评论(0) 推荐(0) 编辑