按照常规配置好后,单节点启动报错如下: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLExcep ...
分类:
数据库 时间:
2020-06-29 11:36:05
阅读次数:
155
普利姆算法(加点法)求最小生成树 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> ...
分类:
编程语言 时间:
2020-06-26 18:39:00
阅读次数:
53
zz from https://superuser.com/questions/246644/can-i-completely-hide-toolbar-in-vmware-workstation#:~:text=VMware%20Workstation%20(Pro)%20for%20Window ...
分类:
系统相关 时间:
2020-06-26 18:06:06
阅读次数:
84
首先 win+x -> 设置 -> 更新和安全 -> 开发者选项 -> 开发者模式 然后 win+r -> 输入control -> 程序 -> 启用或关闭Windows功能 -> 适用于 Linux 的 Windows 子系统 登陆:https://docs.microsoft.com/en-us ...
分类:
系统相关 时间:
2020-06-25 13:57:18
阅读次数:
179
题目链接 题目: 题解:很简单、经典的的一道快速幂的题 注意一下用LL型就ok。 代码: 1 #include <map> 2 #include <set> 3 #include <list> 4 #include <stack> 5 #include <queue> 6 #include <deq ...
分类:
其他好文 时间:
2020-06-25 11:32:48
阅读次数:
78
1 文件结构 2文件代码 2.1 src\App.vue <template> <div id="app"> <!-- <img src="./assets/logo.png"> <HelloWorld/>--> <router-view></router-view> <tab-bar > <tab ...
分类:
其他好文 时间:
2020-06-25 10:07:26
阅读次数:
76
一、模板按钮绑定切换按钮(事件->点击: this.switch_page() ) 二、js定义switch_page函数 switchPage(){ this.show("page1"); //跳转的页面显示 this.hide("index"); //当前页面隐藏 //里面参数为页面 id号 } ...
分类:
其他好文 时间:
2020-06-24 00:47:36
阅读次数:
81
1,在Activity的onStop()函数中隐藏Widget。 int HomeLauncher::onStop() { QWidget* pObj = mProperty->getUiObj(); if(pObj) { pObj->hide(); } return 0; } 2,在Activit ...
分类:
其他好文 时间:
2020-06-23 21:40:50
阅读次数:
62
private const int SW_HIDE = 0; private const int SW_RESTORE = 9; private const string SHELL_TRAYWND = "Shell_TrayWnd"; private const string BUTTON = " ...
1 protected static string DecryptAes(string input, string key) 2 { 3 var encryptedBytes = Convert.FromBase64String(input); 4 5 byte[] pwdBytes = getKe ...
分类:
编程语言 时间:
2020-06-22 19:16:36
阅读次数:
91