1 软件环境 Oracle Linux 6.9 Oracle Enterprise Manager Cloud Control 12.1.0.4 Oracle 11.2.0.3 2 软件准备 1)下载EM资料库模板 https://www.oracle.com/enterprise-manager/ ...
分类:
数据库 时间:
2020-05-27 20:43:51
阅读次数:
138
#include <windows.h> #include <tchar.h> #include <stdio.h> int CDECL MessageBoxPrintf(TCHAR* szCaption, TCHAR* szFormat, ...) { TCHAR szBuffer[1024]; ...
分类:
其他好文 时间:
2020-05-27 20:06:14
阅读次数:
71
错误代码: 1 NavigationDuplicated {_name: "NavigationDuplicated", name: "NavigationDuplicated", message: "Navigating to current location ("/index") is not ...
分类:
其他好文 时间:
2020-05-27 15:14:34
阅读次数:
200
来源:人人贷大前端技术中心 juejin.im/post/5d0b3f8c6fb9a07ec07fc5d0 Git是现在市面上最流行的版本控制工具,书写良好的commit message能大大提高代码维护的效率。 但是在日常开发中由于缺少对commit message的约束,导致填写内容随意、质量参 ...
分类:
其他好文 时间:
2020-05-27 15:00:35
阅读次数:
80
题: try { try { System.out.println("A"); throw new Exception("1"); }catch (Exception e){ System.out.println("B"); throw new Exception("2"); }finally { ...
分类:
其他好文 时间:
2020-05-27 00:50:30
阅读次数:
83
分享一下安装软路由的乐趣软件包, 就用这个论坛里面的就行 openwrt-x86-64-combined-squashfs.img前言,试过多次mac装了win7以后硬盘写不了IMG,只能识别0硬盘, 以前是Mac 命令来解决u盘方式1) 进去Mac 终端,run 下面命令(sudo) dd if= ...
分类:
系统相关 时间:
2020-05-26 23:31:09
阅读次数:
276
消息中间件概述 什么是消息中间件 MQ全称为Message Queue: 消息队列是应用程序之间的通信. 为什么要使用MQ 在项目中, 可将一些无需即时返回且耗时的操作提取出来, 进行异步处理, 而这种异步处理的方式能大大节省服务器的请求响应时间, 从而提高了系统的吞吐量. 开发中消息队列的应用场景 ...
分类:
其他好文 时间:
2020-05-26 12:39:22
阅读次数:
51
查看私有仓库镜像的版本列表 格式: curl -XGET http://仓库地址/v2/镜像名称/tags/list # curl -XGET http://docker.vonedao.com/v2/vonedao-cs/vonedao-tenant-message-biz/tags/list { ...
分类:
其他好文 时间:
2020-05-26 12:13:40
阅读次数:
153
1,原因如下图 原因是开发模式为Debug配置环境,发布服务器后在release模式下没找到对应的xml配置文件 解决办法,在项目配置document的xml除了debug模式之外,在release也需要配置,如下图configuration选择配置环境 ...
分类:
其他好文 时间:
2020-05-26 01:07:20
阅读次数:
250
django小白必会三板斧 from django.shortcuts import HttpResponse,render,redirect return HttpResponse('字符串') return render(request,'login.html') def ab_render(r ...
分类:
其他好文 时间:
2020-05-26 00:58:02
阅读次数:
59