解决问题
文章平均质量分 56
无字佚名
这个作者很懒,什么都没留下…
展开
-
解决处理因atomikos整合druid出现的com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet的bug
解决处理因atomikos整合druid出现的com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 70,103,716 milliseconds ago. The last packet sent successfully to the server was 70,103,716 milliseconds ago.原创 2022-09-06 15:37:25 · 2179 阅读 · 1 评论 -
ReactNative 使用WebView的大坑
ReactNative项目中需要用到WebView,初次使用WebView遇到的坑 先上代码: importReact,{Component}from"react" import{WebView}from"react-native-webview" import{View,Text }from"react-native" classMyWebextends...原创 2020-04-17 12:18:24 · 1544 阅读 · 1 评论 -
解决IDEA git commit代码提示框闪两次就没有任何动作问题
最近遇到的烦人的问题,IDEA使用git提交代码,经常提示框闪两次就没有任何动作,也不会报任何错误。找不到任何的问题,没办法,只能用git自带的命令提交,烦人。后来,才发现,只是IDEA对代码中检测是windows换行符(CRLF)还是Unix(LF)出的问题。 于是,将CRLF更改为LF,即可可以提交上去了。 但是,问题是,团队其他人用的都是CRLF,不能保持统一的换行符,可能会出现团队代码...原创 2019-09-23 15:35:43 · 2685 阅读 · 2 评论