原创 restful接口開發

https://www.bilibili.com/video/av75996457?p=2 基本概念部分: 1.處理資源使用GET,POST,PUT,DELETE等http方法操作實現創建、讀取、修改、刪除 2.客戶端通過四個HTTP動詞

原创 @JsonIgnoreProperties(ignoreUnknown = true)

https://blog.csdn.net/wuzhong8809/article/details/90378722

原创 txt中有很多行數據,每行只有3個數據並且都是用空格隔開,將數據怎樣導入excel,變成N行3列的表方法

直接整個複製到 excel表中, 選中一列 然後選擇數據-》分列 —>分隔符號—>下一步—>其它,在裏面打個空格,確定 就可以了

原创 如何刪除TXT文件裏的指定字符

打開TXT,在菜單[編輯]-->[替換],將要去掉的字符輸出查找內容這一欄,替換爲這一欄不填,就能把這些去掉。

原创 URI is not registered (Settings | Languages & Frameworks | Schemas and DTDs)

https://blog.csdn.net/weixin_43367967/article/details/85198352

原创 java代碼分析及分析工具

https://blog.csdn.net/u011368943/article/details/77988059

原创 idea快捷鍵

1.psvm 也就是public static void main 2.System.out.println();就是sout 3.for 4.ctrl+N  搜索類 5.ctrl+shift+N  搜索文件 6.ctrl+alt+空格 

原创 解決Plugin org.apache.maven.plugins:maven-archetype-plugin:RELEASE or one of its dependencies...

https://blog.csdn.net/qq_37279648/article/details/84328366

原创 Failed to read schema document 'http://code.alibabatech.com/schema/dubbo/dubbo.xsd'問題解決方法

注意:dubbo.xsd在D:\haiersoftware\software\maven\repository\com\alibaba\dubbo下的dubbo版本下 https://blog.csdn.net/wxydaisy/arti

原创 配置logback

logback所需jar包和logback.xml配置 https://blog.csdn.net/luo3_3qin/article/details/81219327

原创 在日誌中打印出想要的信息-java代碼實現

java代碼: public class timeDifferentImpl {     private static final Logger LOG = LoggerFactory.getLogger(timeDifferentImp

原创 RemotingException: message can not send, because channel is closed

https://blog.csdn.net/u014756578/article/details/80167357

原创 shell腳本語法

https://www.runoob.com/linux/linux-shell-variable.html 1.$0、$1、$2代表什麼? $0 :就是你寫的shell腳本本身的名字 $1:是你給你寫的shell腳本傳的第一個參數 $2

原创 併發編程

http://ifeve.com/java-7-concurrency-cookbook/併發編程的官方網址 併發與多線程的聯繫與區別: 併發與多線程之間的關係就是目的與手段之間的關係。     併發(Concurrent)的反面是串行,