2024年1月19日

tomcat

摘要: 配置https https://tomcat.apache.org/tomcat-9.0-doc/ssl-howto.html#Quick_Start 远程调试 catalina.bat上面加 SET CATALINA_OPTS=-server -Xdebug -Xnoagent -Djava.co 阅读全文

posted @ 2024-01-19 14:02 heysong 阅读(3) 评论(0) 推荐(0) 编辑

2024年1月2日

SSH相关

摘要: public key authentication https://www.ssh.com/academy/ssh/public-key-authentication 示例 1. 生成rsa key paires ssh-keygen -f ./user_key -b 4096 -t rsa 2. 阅读全文

posted @ 2024-01-02 17:10 heysong 阅读(5) 评论(0) 推荐(0) 编辑

2023年12月31日

GCC在windows上

摘要: 引用 Cygwin 和MinGW 的区别与联系是怎样的 GCC on Windows 在 msys2 中的 mingw64 、 ucrt64 、 clang64 的区别与相同点有啥 mingw-w64 Cygwin msys2 msys2不同环境(MSYS,UCRT64,MINGW64,...)的区 阅读全文

posted @ 2023-12-31 08:58 heysong 阅读(5) 评论(0) 推荐(0) 编辑

autotools和cmake

摘要: Makefile https://muicoder.github.io/linux_basic/0520source_code_and_tarball.html errno 打印错误信息 #include <errno.h> #include <string.h> printf("[error]re 阅读全文

posted @ 2023-12-31 08:48 heysong 阅读(34) 评论(0) 推荐(0) 编辑

2023年11月23日

spring笔记

摘要: Async First, let’s go over the rules. @Async has two limitations: It must be applied to public methods only. Self-invocation — calling the async metho 阅读全文

posted @ 2023-11-23 10:00 heysong 阅读(4) 评论(0) 推荐(0) 编辑

2023年10月12日

MAVEN相关

摘要: 默认生命周期与插件对应关系 配置私服 搭建nexus 一般为http://localhost:8081 配置settings.xml <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SET 阅读全文

posted @ 2023-10-12 10:34 heysong 阅读(3) 评论(0) 推荐(0) 编辑

2023年6月2日

C++字符串编码GBK与UTF-8转换

摘要: c库 https://www.tutorialspoint.com/c_standard_library/string_h.htm ASCII对照表 https://tool.oschina.net/commons?type=4 以UTF-8转GBK为例,其他原理相同 1. 列出当前系统支持的loc 阅读全文

posted @ 2023-06-02 22:33 heysong 阅读(577) 评论(0) 推荐(0) 编辑

2023年4月24日

log4j2.properties配置

摘要: ### VIDEO_CONVERSION LOG ## logger.VIDEO_CONVERSION.name = com.isprint.am.core.privpwd.videoconverter logger.VIDEO_CONVERSION.level = DEBUG logger.VID 阅读全文

posted @ 2023-04-24 10:39 heysong 阅读(330) 评论(0) 推荐(0) 编辑

2023年4月14日

springboot与其他模块(比如springcloud)版本对应信息

摘要: https://start.spring.io/actuator/info 阅读全文

posted @ 2023-04-14 09:02 heysong 阅读(13) 评论(0) 推荐(0) 编辑

2023年4月13日

springboot-admin-server和swagger2不能同时用问题

摘要: Please change the admin context, for example: spring.boot.admin.context-path: /admin http://codecentric.github.io/spring-boot-admin/1.5.7/ 阅读全文

posted @ 2023-04-13 09:41 heysong 阅读(75) 评论(0) 推荐(0) 编辑