删除数据库时提示:message:Database DBname is not empty. One or more tables exist. ##解决方案1: 先删除数据库中的所有表,再删除数据库 ##解决方案2: 强制删除 drop database db_hive cascade; ...
分类:
数据库 时间:
2021-01-26 11:44:00
阅读次数:
0
Linux 下有很多实用工具可以让你在终端界面查看文本文件。其中一个就是 more。 more 跟我之前另一篇文章里写到的工具 —— less 很相似。它们之间的主要不同点在于 more 只允许你向前查看文件。 尽管它能提供的功能看起来很有限,不过它依旧有很多有用的特性值得你去了解。下面让我们来快速 ...
分类:
系统相关 时间:
2021-01-25 11:24:37
阅读次数:
0
用户信息存储 /** * 通过重载,配置user-detail服务<!--more--> * @param auth * @throws Exception */ @Override protected void configure(AuthenticationManagerBuilder auth ...
分类:
其他好文 时间:
2021-01-21 11:00:48
阅读次数:
0
/**<!--more--> * 通过重载,配置如果通过拦截器保护请求 * @param http * @throws Exception */ @Override protected void configure(HttpSecurity http) throws Exception {// su ...
分类:
其他好文 时间:
2021-01-21 11:00:01
阅读次数:
0
文件權限 什么是文件权限: 我们对当前文件可以干什么 看 写入 删除 执行 root 拥有最高执行权限 一个权限可以控制它 普通文件的默认权限 我们创建 vim touch echo后默认的权限 rw-r--r-- r 4 read 读取文件 cat less more vim sed w 2 wr ...
分类:
系统相关 时间:
2021-01-21 10:55:18
阅读次数:
0
1473G - Tiles 画图分析,可以发现路径形成了网格图,每一次的状态是一条斜线上的所有点,增加操作就是将网格图向外拓展,减少操作就是将网格图向内收拢。 可以分阶段统计,因为每次阶段上点的数量最大只会变化 \(5\),点数是 \(O(n)\) 级别的,相邻阶段之间可以用组合数转移。 \(f_{ ...
分类:
其他好文 时间:
2021-01-16 11:50:20
阅读次数:
0
UTF-8, UTF-16, UTF-32 & BOM General questions, relating to UTF or Encoding Forms Is Unicode a 16-bit encoding? Can Unicode text be represented in more ...
分类:
其他好文 时间:
2021-01-15 12:15:52
阅读次数:
0
Error This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, se ...
html代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>注册页面</title> </head> <body> <form action="/register" method="post"> <inpu ...
分类:
其他好文 时间:
2021-01-14 10:46:36
阅读次数:
0
cat 显示文本 -E 显示结尾的$符-n 对显示的每一行进行编号-b 对非空行进行编号-s 对连续的空行进行压缩 tac 倒序显示 less 分屏显示文本 向下翻一屏 空格 向下翻一行 回车 q 退出 / 文本 搜索文本 n 向下查找 N向上查找 less 是man命令的默认分页器 more 分页 ...
分类:
系统相关 时间:
2021-01-13 11:10:02
阅读次数:
0