Caused by: java.sql.SQLSyntaxErrorException: Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'c.id' which is ... ...
分类:
数据库 时间:
2020-06-13 16:01:22
阅读次数:
325
Oracle启动报错:ORA-03113: end-of-file on communication channel问题背景:客户启动测试环境数据库报错 1 SQL> startup 2 ORACLE instance started. 3 Total System Global Area 1068 ...
分类:
数据库 时间:
2020-06-13 11:14:11
阅读次数:
60
1.前言 众所周知,StringBuffer 是线程安全的 ,而StringBuilder 不是线程安全的 ,但是 StringBuilder 速度会更快。 事实上 作为一个字符串拼接 方法 ,在线程安全的应用场景几乎没有 【在频繁进行字符串运算(如拼接、替换、删除等),并且运行在多线程环境中, 则 ...
分类:
其他好文 时间:
2020-06-13 11:10:40
阅读次数:
76
Oracle启动报错:ORA-03113: end-of-file on communication channel问题背景:客户启动测试环境数据库报错 1 SQL> startup 2 ORACLE instance started. 3 Total System Global Area 1068 ...
分类:
数据库 时间:
2020-06-13 10:58:24
阅读次数:
54
<!DOCTYPE html> <html lang="ch"> <head> <meta charset="UTF-8"> <title>Title</title> <link href="../libs/supermap10/Build/Cesium/Widgets/widgets.css" r ...
分类:
其他好文 时间:
2020-06-13 10:56:24
阅读次数:
225
一、DSP与单片机的区别 冯·诺依曼结构是一种将程序指令存储器和数据存储器合并在一起的存储器结构; 哈佛结构是一种将程序指令存储和数据存储分开的存储器结构。哈佛结构是一种并行体系结构,它的主要特点是将程序和数据存储在不同的存储空间中,即程序存储器和数据存储器是两个独立的存储器,每个存储器独立编址、独 ...
分类:
其他好文 时间:
2020-06-12 21:49:25
阅读次数:
120
Linux: 配置文件路径:/etc/pip.conf ~/.pip/pip.conf Windows: 配置文件路径:%appdata%\pip\pip.ini %userprofile%\pip\pip.ini 常用配置: [global] index-url=http://mirrors.al ...
分类:
其他好文 时间:
2020-06-12 20:30:58
阅读次数:
223
1 import com.alibaba.fastjson.JSON; 2 import lombok.extern.slf4j.Slf4j; 3 import org.apache.commons.collections4.CollectionUtils; 4 import org.apache. ...
分类:
其他好文 时间:
2020-06-12 11:13:07
阅读次数:
56
在linux中git安装后颜色是不自动设置的。 下面的命令设置git的颜色: git config --global color.status autogit config --global color.diff autogit config --global color.branch autogi ...
分类:
系统相关 时间:
2020-06-12 11:09:59
阅读次数:
102
需求: 在aspnet中,做一个html页面,页面改了之后手机端会存在缓存。 解决方案: 在全局文件Global.asax中 ,提供Application_BeginRequest 事件,这个事件可以监听到,本网站的所有请求都会经过这。此处根据url自定义输出响应内容,拼上时间戳,并结束响应就可以了 ...
分类:
Web程序 时间:
2020-06-12 10:48:37
阅读次数:
92