51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Ng
C++ string函数的用法
std::string相当于stringstring::npos取值由实现决定,一般是-1find_first_of()和find_last_of()函数find_first_of()和find_last_of()执行简单的模式匹配,如在字符串中查找单个字符c。函数find_first_of()查找在字符串中第1个出现...
开发笔记
·
2024-10-29
C++
string
函数
用法
zip error: Nothing to do! (try: zip -qr /home/backup/20170903195/home/pro1)
错误可能:zip命令编辑错误或者是目录错误zipI/Oerror:Nosuchfileordirectory目录未创建(-->脚本不自动创建目录)...
开发笔记
·
2024-10-21
zip
home
error
Nothing
to
解决Authentication plugin caching_sha2_password cannot be loaded问题
登录mysql时报错Authenticationplugin‘caching_sha2_password‘cannotbeloaded解决办法 报错信息如下:ERROR2059(HY000):Authenticationplugin'caching_sha2_password&...
开发笔记
·
2024-10-09
解决
Authentication
plugin
caching
sha2
Linux如何实现SpringBoot项目开机自启
1)先切换到系统目录cd/etc/systemd/system全选复制2)新建注册服务脚本viiot-server.service全选复制内容如下:[Unit]Description=iot-serverAfter=network.target[Service]Type=forkingExecStart=/app/io...
开发笔记
·
2024-10-08
Linux
如何
实现
SpringBoot
项目
Nginx强制http跳转https访问的几种方法
Nginx让http的链接自动跳转到https的链接,其实方法还是蛮多的,下面介绍两种常用方法。方法一可以把所有的HTTP请求通过rewrite重写到HTTPS上server{listen80;server_nameXXXXX.com;//你的域名//rewrite^(.*)$https://XXXXXX.comper...
开发笔记
·
2024-09-29
Nginx
强制
http
跳转
https
springboot下mybatisplus开启打印sql日志怎么配置
需要以下三个配置1:设置mybatisplus包下的日志级别为DEBUG;logging: level: com: baomidou: ...
开发笔记
·
2024-09-24
springboot
mybatisplus
开启
打印
sql
Springboot启动后怎么执行
一、注解@PostConstruct使用注解@PostConstruct是最常见的一种方式,存在的问题是如果执行的方法耗时过长,会导致项目在方法执行期间无法提供服务。@Componentpublic class StartInit {//// ...
开发笔记
·
2024-09-24
Springboot
启动
怎么
执行
SpringBoot升级Tomcat版本
在父模块中的pom.xml中新增如下内容复制复制复制复制复制<properties>+<tomcat.version>9.0.84</tomcat.version></properties>在dependencyManagement中新增如下依赖复制复制复...
开发笔记
·
2024-09-11
SpringBoot
升级
Tomcat
版本
echarts symbol png格式图片在pc端显示移动端不显示的问题
将图片转为base64位。points[i]={displayName:node.name,name:node.id,symbol:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAYAAACMRWrdAAAACXBIWXMAAA7EAAAOxAG...
开发笔记
·
2024-09-11
显示
echarts
symbol
png
格式
Mysql报错: ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
解决方法一:报错:ERROR1290(HY000):TheMySQLserverisrunningwiththe--secure-file-privoptionsoitcannotexecutethisstatement 二:分析:MySQL对于导入导出的目录是有限制的,只允许指定的目录才能导入导出。secu...
开发笔记
·
2024-09-07
Mysql
报错
ERROR
1290
HY000
linux 通过 awk 命令统计 nginx 访问频繁 ip
命令如下:tail -10000 /nginx_log_path.log | awk -v FS='|' '{print $2}' | sort |uniq -c&nb...
开发笔记
·
2024-09-03
linux
通过
awk
命令
统计
SpringBoot项目非web方式启动
1、springboot1.x中以非web方式启动 1234567891011121314151617//启动方式1<br>SpringApplicationapp=newSpringApplication(Application.class);<br>app.setWebEnviro...
开发笔记
·
2024-09-03
SpringBoot
项目
web
方式
启动
canal-server读取binglog异常解决方法
1、canal-server异常信息 EntryPosition[included=false,journalName=binlog.001163,position=102983663,serverId=948551720,gtid=,timestamp=1606195870000]cost:7m...
开发笔记
·
2024-09-02
canal-server
读取
binglog
异常
解决
Golang数据类型转换
整数转字符串在Go语言中,我们可以使用strconv包中的Itoa函数将整数转换为字符串。以下是一个简单的例子:packagemainimport("fmt""strconv")funcmain(){variint=123str:=strconv.Itoa(i)fmt.Print...
开发笔记
·
2024-09-02
Golang
数据
类型
转换
如何配置 Nginx 的错误日志和访问日志
Nginx会在两种类型的日志中记录其事件:访问日志和错误日志。访问日志记录客户端请求的信息,而错误日志记录服务器和应用程序的问题。一、配置访问日志每当客户端请求被处理时,Nginx就会在访问日志中生成一个新的事件。每个事件记录包含一个时间戳,并包括有关客户端和请求资源的各种信息。访问日志可以显示访问者的位置、他们访问的...
开发笔记
·
2024-09-02
日志
如何
配置
Nginx
错误
首页
上一页
1
2
3
4
5
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他