码迷,mamicode.com
首页 >  
搜索关键字:sga shared pool scope sysstat    ( 10321个结果
【记录】java 阿里oss频繁上传文件报错:网络连接错误,详细信息:Connection pool shut down
问题解析:由于在创建连接的时候@Bean默认是单例的,所以当我们每次上传完后,连接关闭,导致再次上传出现连接错误 解决方式:将bean设置成多例模式 @Scope(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE ) 参考资料:https://www.c ...
分类:编程语言   时间:2020-02-14 16:18:27    阅读次数:146
用 python 来操作word文件(使用 docx 库)
实例一: from docx import Document from docx.enum.text import WD_ALIGN_PARAGRAPH from docx.oxml.ns import qn # 中文格式 from docx.shared import Pt # 磅数 from d ...
分类:编程语言   时间:2020-02-14 16:06:46    阅读次数:150
springboot整合阿里druid数据源
全配置在application配置文件(方式1) maven依赖 <!--druid的启动器--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <vers ...
分类:编程语言   时间:2020-02-14 13:10:52    阅读次数:98
SpringBoot热重启配置
1.添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> 不能被其它模块继承,如果多个 ...
分类:编程语言   时间:2020-02-14 01:19:13    阅读次数:119
Nginx 启动报错 (nginx: error while loading shared libraries: XXX: cannot open shared object file: No such file or directory ) 的解决办法
本文解决 Nginx 因库文件缺失而无法启动问题 没有采用缺失什么就安装什么的解决办法, 而是借助于另一个正常运行的Linux , 将其上的库文件发送给缺失库文件的 Linux 服务器 以 缺失 libharfbuzz.so.0 为例 , 其它库文件缺失 大同小异 前提摘要: 今天打开我的网址 ww ...
分类:其他好文   时间:2020-02-14 01:17:34    阅读次数:105
NX二次开发-Block UI C++界面Select Object(选择对象)控件的获取(持续补充)
1 //选择对象控件设置过滤 2 Selection::SelectionAction action = Selection::SelectionActionClearAndEnableSpecific; 3 std::vector<Selection::MaskTriple> maskArray( ...
分类:编程语言   时间:2020-02-14 01:06:19    阅读次数:227
lsof(查看端口)
简介简介lsof(list open files)是一个列出当前系统打开文件的工具。在linux环境下,任何事物都以文件的形式存在,通过文件不仅仅可以访问常规数据,还可以访问网络连接和硬件。所以如传输控制协议 (TCP) 和用户数据报协议 (UDP) 套接字等,系统在后台都为该应用程序分配了一个文件... ...
分类:其他好文   时间:2020-02-13 22:53:52    阅读次数:212
Android Studio(2)
1、res目录下的布局: drawable目录下主要放位图文件(PNG、JPE或GIF),9_Patch图片文件,ShareDrawable、Drawable对象文件(像XML资源文件)。 mipmap的子目录有:mipmap-mdpi(放中分辨率图片),mipmap-hdpi(放高分辨率图片),m ...
分类:移动开发   时间:2020-02-13 20:44:17    阅读次数:84
(02)Flume安装及其启动
1、将文件解压到/usr/local [root@localhost src]# tar -zxvf apache-flume-1.6.0-bin.tar.gz -C /usr/local/ 2、创建flume-env.sh文件,并设置jdk路径 [root@localhost local]# cp ...
分类:Web程序   时间:2020-02-13 15:09:49    阅读次数:105
LibGit2Sharp在 Asp.Net Core 3.1 docker 镜像中中无法使用的问题
The type initializer for 'LibGit2Sharp.Core.NativeMethods' threw an exception. Unable to load shared library 'git2-106a5f2' or one of its dependencies ...
分类:Web程序   时间:2020-02-13 09:17:16    阅读次数:128
10321条   上一页 1 ... 90 91 92 93 94 ... 1033 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!