原创 將博客搬至CSDN

將博客搬至CSDN

原创 Linux中'aclocal-1.15' is missing on your system

因業務需要部署分佈式存儲,新分配了三臺RHE機器,在部署安裝MFS時,make階段出現以下錯誤提示:錯誤提示: CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/agssvYX/moos

原创 The import *** cannot be resolved

Maven工程中編譯時經常會提示The import *** cannot be resolved。錯誤提示:The import net.sf.json.JSONObject cannot be resolved。原因分析:Maven項目

原创 Python中ImportError: No module named request

Python腳本在編譯的時候,經常會遇到ImportError: No module named *** 的錯誤錯誤提示:ImportError: No module named request問題分析:原因是Python中有些模塊未導入。

原创 spring-boot-maven-plugin:[unknown-version]

編譯SpringBoot當前項目時,problem was encountered while building the effective model for org.springframework.boot:spring-boot-ma

原创 PL\SQL中對數據庫操作後沒有改變

問題描述:在PL\SQL的SQL WINDOW中對數據庫進行增、刪、改操作後,在別的命令窗口查沒有改變問題分析:SQL WINDOW中對數據庫的增刪改操作都是臨時的,需要進行COMMIT才能生效,但是在關閉窗口時操作會提示是否保存。解決方法

原创 bat文件中批處理設置變量延遲的問題

在bat文件中想實現對變量的賦值和輸出,發現設置的變量在後續使用中爲空,代碼如下: @echo off for %%i in (*) do ( set var=%%i echo %var% ) 理論上,輸出結果應爲當前命令所在目錄裏的所有文

原创 Python中出現request模塊導入錯誤

python項目中 from urllib.request import urlopen ,導入request出問題,而進行完 pip install request 安裝後,仍會出現該錯誤。錯誤提示:ImportError: No mod

原创 Unbound classpath container:JRE System Library ...

Java工程中遇到Unbound classpath container: 'JRE System Library [jdk1.8.0_74]' in project 'gis' gis Build path Build Pa

原创 SpringBoot中的Application.Properties怎麼用?

一般而言,SpringBoot項目中都會有一個默認的配置文件Application.Properties,相當於一個變量的列表,有點類似於系統啓動時的*.ini文件,一般都是放在Resources文件夾下面。那麼在程序中,又是怎麼讀取和使用

原创 Method not loaded because @ConditionalOnClass

SpringBoot項目中經常會碰到類似的報錯,Parameter 0 of constructor in *** required a bean of type *** that could not be found.    - Bea