原创 centos7下安裝ELK stack及整合springboot+logback

  下載ELK Linux命令備忘 安裝Elasticsearch 創建非root用戶 更改配置 允許遠程訪問  配置系統服務 修改最大打開文件數、最大進程數 啓動 注意事項 安裝Logstash Hello World 創建軟連接 指定

原创 ubuntu安裝配置nexus maven私服,以及maven pom.xml配置

1、下載nexus wget https://sonatype-download.global.ssl.fastly.net/repository/repositoryManager/3/nexus-3.18.1-01-unix.tar

原创 常用設計模式彙總——思維導圖與UML

思維導圖 抽象工廠(abstract factory) 工廠方法(Factory Method) 原型(Prototype) 單例(sinleton) 適配器(Adapter) 橋接(Bridge) 組合(Composite

原创 nginx-1.16.1靜態文件服務器跨域設置

worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type

原创 Ubuntu 16.04安裝IPSEC服務

sudo apt-get update ​sudo apt-get upgrade sudo add-apt-repository ppa:nm-l2tp/network-manager-l2tp sudo apt-get update

原创 Ubuntu安裝nodejs10和cnpm

安裝nodejs10:  curl -sL https://deb.nodesource.com/setup_10.x | sudo bash sudo apt update sudo apt -y install gcc g++ ma

原创 Invalid bound statement (not found)容易忽略的問題

在MybatisPlusConfig配置類中用@MapperScan("com.xxx.xxx.mapper")指定掃描包路徑時,一定到指定到最底層的包,指定父類包會出現異常

原创 Ubuntu通過SSH命令行安裝TeamViewer看不到ID

安裝好TeamViewer後使用 teamviewer --info-print id 查看ID時報錯Try restarting the Teamviewer daemon,網上大多是說要在global.conf的末尾增加[int32]

原创 UML面向對象建模與設計筆記——第1章 簡介

1.1什麼是面向對象面向對象(OO)方法大致都包含四個方面:    標識(identity):        數據被量化成成爲對象的(Object)的離散的、可辨識的實體。    分類(classification):        有着

原创 JTable中點擊鼠標右鍵彈出菜單

https://blog.csdn.net/hiyohu/article/details/9446353

原创 Windows下在後臺運行jar包

新建一個bat文件,輸入:@echo offstart javaw -jar xxx.jarexit執行這個批處理程序就可以在後臺運行jar包了