1、SpringMVC自动配置概览 Spring Boot provides auto-configuration for Spring MVC that works well with most applications.(大多场景我们都无需自定义配置) The auto-configuratio ...
分类:
编程语言 时间:
2021-06-28 19:31:50
阅读次数:
0
给定不同面额的硬币 coins 和一个总金额 amount。编写一个函数来计算可以凑成总金额所需的最少的硬币个数。如果没有任何一种硬币组合能组成总金额,返回 -1。 你可以认为每种硬币的数量是无限的。 示例 1: 输入:coins = [1, 2, 5], amount = 11输出:3 解释:11 ...
分类:
其他好文 时间:
2021-06-28 18:57:50
阅读次数:
0
tag:组合计数,点分治,容斥 题意 给一棵树,对每个点分配一个权值(可以为 \(0\)),所有点权值和为 \(m\)。求所有分配方案的带权重心标号和(多个重心取标号最小的一个)。 \(n\leq2\cdot10^5,\ m\leq5\cdot10^6\) 当 \(m\) 为奇数时,对于一条边来说, ...
分类:
其他好文 时间:
2021-06-28 18:36:09
阅读次数:
0
VNCR is supported for the cluster. Use MOS note 1914282.1 to ensure you've done all the required steps How to Enable VNCR on RAC Database to Register ...
分类:
数据库 时间:
2021-06-28 17:54:34
阅读次数:
0
1. 题目 1.1 英文题目 Given an integer array nums and an integer val, remove all occurrences of val in nums in-place. The relative order of the elements may ...
分类:
编程语言 时间:
2021-06-25 17:23:46
阅读次数:
0
主题交换机,这个交换机其实跟直连交换机流程差不多,但是它的特点就是在它的路由键和绑定键之间是有规则的。 简单地介绍下规则: * (星号) 用来表示一个单词 (必须出现的) # (井号) 用来表示任意数量(零个或多个)单词 通配的绑定键是跟队列进行绑定的,例: 队列Q1 绑定键为 .TT. 队列Q2绑 ...
分类:
其他好文 时间:
2021-06-25 17:23:14
阅读次数:
0
# Dos命令 打开cmd的方式 1.开始+系统+命令提示符 2.win键+R 输入cmd 打开控制台(推荐使用) 3.在任意的文件夹下面,按住shift键+鼠标右键点击,在此处打开命令行窗口 4.资源管理器的地址栏前面加上cmd 路径 管理员方式运行 常用的DOS命令 ```bash #盘符切换 ...
分类:
其他好文 时间:
2021-06-25 16:34:49
阅读次数:
0
[root@es02-010007081131 dumpbackup]# more /home/script/backup/mysql_dumpbackup.sh #!/bin/bash . /etc/profile . ~/.bash_profile backup_date=`date "+%Y% ...
分类:
数据库 时间:
2021-06-24 18:11:54
阅读次数:
0
文件上传和下载 一、创建SpringMVC项目 略 二、导入支持的包 <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload --> <dependency> <groupId>commons-fil ...
分类:
Web程序 时间:
2021-06-24 17:45:29
阅读次数:
0
前段时间客户要求table列需要可拖拽功能,狂问度娘,大部分都是从antd官网上面copy的。 极个别的不是,但是含有选择框的就不行了 最后还是找到了: https://www.jianshu.com/p/89b8ccd1eca0 需要用到插件 vue-draggable-resizable,安装最 ...
分类:
其他好文 时间:
2021-06-23 17:18:08
阅读次数:
0