转自 https://www.cnblogs.com/zxlrd/p/5344071.html <!--声明语句--> <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/POM/4.0.0" ...
分类:
其他好文 时间:
2021-01-18 10:50:47
阅读次数:
0
一、整合log-back 在resources下新建logback-spring.xml <?xml version="1.0" encoding="UTF-8"?> <!-- 日志级别从低到高分为TRACE < DEBUG < INFO < WARN < ERROR < FATAL,如果设置为WA ...
分类:
编程语言 时间:
2021-01-18 10:50:25
阅读次数:
0
当前日期: Sub 测试() Debug.Print Date End Sub 当前时间: Sub 测试() Debug.Print Date End Sub 几月: Sub 测试() Debug.Print Date Debug.Print Month(Date) & "月" End Sub 格式 ...
分类:
编程语言 时间:
2021-01-18 10:41:21
阅读次数:
0
背景 发现有两个mongodb环境的数据库表索引不一致,另一个数据库有索引缺失,需要将一个数据库里的所有表索引导入到另一个数据库 也可用于单独备份数据库所有表的索引 写mongo shell的js脚本可参考官方文档https://docs.mongodb.com/manual/tutorial/wr ...
分类:
数据库 时间:
2021-01-18 10:35:56
阅读次数:
0
连接 SQLServer : sqlcmd -S localhost -U sa -P '<123123Aa!@>' sqlcmd 是连接数据库必要的语句, localhost 代表从本地连接,sa 是用户名, ‘<123123Aa!@>’ 是密码。 创建数据库: create database T ...
分类:
数据库 时间:
2021-01-16 12:10:38
阅读次数:
0
当Django设置DEBUG为False时,发现admin和html的静态资源文件加载失败,折腾一段时间终于找到解决办法; 1、先在setting文件增加BASE_DIR(项目的路径) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspat ...
分类:
Web程序 时间:
2021-01-16 12:05:12
阅读次数:
0
When func.exe is run from VS, it suggests "For detailed output, run func with --verbose flag." 问题描述 在本地调式Azure Function时候,默认输出的日志都是比较简洁的。如果需要详细的日志输出,可 ...
分类:
其他好文 时间:
2021-01-16 12:02:08
阅读次数:
0
1、整数比较:-eq 等于,如:if [ "$a" -eq "$b" ] 或 if [ $a -eq $b ]-ne 不等于,如:if [ "$a" -ne "$b" ]-gt 大于,如:if [ "$a" -gt "$b" ]-ge 大于等于,如:if [ "$a" -ge "$b" ]-lt 小 ...
分类:
系统相关 时间:
2021-01-16 11:43:35
阅读次数:
0
Debug high CPU usage in .NET Core In this tutorial, you'll learn how to debug an excessive CPU usage scenario. Using the provided example ASP.NET Core ...
分类:
Web程序 时间:
2021-01-15 11:42:28
阅读次数:
0
前言 通过本文最终实现了在M1芯片的Mac mini上的Goland的开发,并通过编译源码解决了无法DEBUG的问题。 Go 1.16版将正式支持Apple Silicon M1芯片,即arm64架构的Mac操作系统,目前go 1.16版版本为beta1,只是会在这个基础上再修修bug,改进文档等。 ...
分类:
系统相关 时间:
2021-01-14 11:32:40
阅读次数:
0