原创 Springcloud中的RestTemplate

RestTemplate restTemplate = new RestTemplate(); restTemplate.delete(""); restTemplate.put("","");

原创 api接口管理

https://blog.csdn.net/zuozewei/article/details/84865116 走進Java接口測試之接口管理工具Swagger2   https://blog.csdn.net/zmh458/articl

原创 active中的問題記錄

1.org.activiti.bpmn.exceptions.XMLException: cvc-complex-type.2.4.a: 發現了以元素 'process' 開頭的無效內容。 詳細內容如下: org.activiti.bp

原创 pgsql中類型的轉換

letter.type_id = earn.share_earn_code   1.type_id 爲integer share_earn_code爲String類型 a.cast (t.shop_id as varchar) b.let

原创 工作流 activit

  瞭解閱讀下面的文章: https://blog.csdn.net/weixin_43220261/article/details/85059106 https://www.baidu.com/link?url=f-hU-cRI6G

原创 與或非,與異或的理解

參考的文章: https://cloud.tencent.com/developer/article/1338265

原创 git -tag

1.添加標籤: git tag <tagName> //創建本地tag git push origin <tagName> //推送到遠程倉庫 git tag -a version -m "note" 註解:git tag 是打標籤

原创 windows-mysql 8.0安裝

1.下載8.0 安裝包 安裝其中的教程參考: https://blog.csdn.net/qq_33144861/article/details/80267462 https://www.cnblogs.com/zhurong/p/989

原创 java 基礎理解

https://blog.csdn.net/weixin_39772847/article/details/84076807#1_58  

原创 centos-docker安裝rabbitmq

1.獲取鏡像: tag標籤可以通過https://hub.docker.com/_/rabbitmq?tab=tags來查詢 #指定版本,該版本包含了web控制頁面 docker pull rabbitmq:management 注意:

原创 redis的架構模式

http://www.redis.cn/topics/sentinel.html  哨兵模式與簡介 集羣教程:http://www.redis.cn/topics/sentinel.html 也可參考這篇文章:https://blog.c

原创 覺得好的blog

關於面試的部分 https://mp.weixin.qq.com/s/eCZXUfQIGH_avef0lPDOhQ 來源於程序員面試 ,作者袁廣鑫

原创 list互轉map java8

 list轉map /** * If the specified key is not already associated with a value or is * associated with null, as

原创 git --ingore 文件理解

在 .gitignore 文件中,每一行的忽略規則的語法如下: 空格不匹配任意文件,可作爲分隔符,可用反斜槓轉義 # 開頭的模式標識註釋,可以使用反斜槓進行轉義 ! 開頭的模式標識否定,該文件將會再次被包含,如果排除了該文件的父級目錄

原创 centos查看安裝軟件的內存佔用

free -m只能查看內存總量情況 top M ( 注意M是大寫) ps aux|head -1; ps aux | sort -k4nr | head -10 df -lh  其他的可自行匹配   (查看文件佔用) du -h --m