摘要:
2022-01-26 Multiple markers at this line - The type org.apache.ibatis.type.TypeHandler cannot be resolved. It is indirectly referenced from required . 阅读全文
摘要:
2022-01-13 服务器重启没多久就假死,CPU占用超高。用户量也不高呀,后来去掉日志打印,就稳定了。 2022-01-13 绿色版的xshell,提示要强制更新“要继续使用此程序,您必须应用最新的更新或使用新版本”。 后来用安装包解压,就能打开了。可能是杀毒软件又干了什么坏事。 2022-02 阅读全文
摘要:
2021-09-12 数据库操作 DbConfig conf = new DbConfig("jdbc:mysql://localhost:3306/test?useUnicode=true", "root", "123456"); conf.setMaxActive(1); PooledDataS 阅读全文
摘要:
2021-08-14 FFmpeg的入口在:/fftools/ffmpeg.c 阅读全文
摘要:
2021-08-14 g++ ffmpeg_main.cpp -o main -lstdc++ -lavformat -lavutil 报错 /bin/ld: /tmp/ccIemqbh.o: undefined reference to symbol 'avcodec_parameters_cop 阅读全文
摘要:
1、MinGW MinGW-5.1.6.exe 链接:https://pan.baidu.com/s/1baSG3CVRzINCPvaF29K3HA 提取码:dlhk 安装的时候切记要全部安装(如果默认安装就没有g++功能,Eclipse默认是用g++编译的) 本来是想通用Eclips安装CDT插件 阅读全文
摘要:
1、场景一: tomcat接收的是来自nginx转发过来的中文 : adContentName = new String(adContentName.getBytes("ISO8859-1"), "utf-8"); 2023-03-06 后来发现不需要这样处理,这种情况只是因为server.xml里 阅读全文
摘要:
2021-02-15 检出代码:mkdir test cd test git init git remote add -f origin http://xxxxx.git git pull origin master 提交代码:git add . // 最后面是一个空格一个点 git commit 阅读全文
摘要:
2021-02-15 CLIENT_PLUGIN_AUTH is required 新版mysql 6.x.x的会报这个错误,还来我换成5.x.x就好了。 2021-03-30 原来ConcurrentHashMap的contains不是contains, 而containsKey才是 contai 阅读全文