在簡單專案搭建後,進行測試訪問,報如錯誤
加入這個 即可解決問題
@slf4j
@enableeurekaclient
public static void main(string args) }
spring 專案搭建的過程中啟動報錯:
trationdelegate$beanpostprocessorchecker : bean 'org.springframework.cloud.autoconfigure.configurationpropertiesrebinderautoconfiguration' of type [org.springframework.cloud.autoconfigure.configurationpropertiesrebinderautoconfiguration$$enhancerbyspringcglib$$5b0ecee7] is not eligible for getting processed by all beanpostprocessors (for example: not eligible for auto-proxying)
是由於配置檔案出錯造成的,檢視配置檔案格式或者所屬關係是否正確。
spring:
name: *
cloud:
config:
# 對應前配置檔案的 部分
profile: dev
# 對應前配置檔案的git分支
label: master
# 配置中心的位址
對比差別後進行改正,有可能有這幾種錯誤
spring:
name: "*"
cloud:
config:
# 對應前配置檔案的 部分
profile: dev
# 對應前配置檔案的git分支
label: master
# 配置中心的位址
oom問題解決
dalvik虛擬機會為應用程式分配固定大小的heap 如果使用超過了這個heap的大小,且沒有可被 物件,就會報oom。多張較大會迅速占用空間造成oom。我們可以使用一下的方法來減少這種情況的產生 1.減少單張的大小,根據螢幕大小來對bitmap做resize。private void setima...
too many open files問題解決辦法
今天用 往liunx中寫檔案,檔案很多 執行一會就日誌上就報錯 too many open files 結果找了半天才解決這個問題,現在給大家分享一下。首先用 ulimit a 命令看看linux的open files值是多少,結果乙隻有1024,不夠用的。然後修改linux的配置檔案,修改 etc...
haoop問題解決
1.namenode不能啟動 cannot lock storage tmp dfs name.the directory is already locked.上網查了查,基本上有兩個辦法 1.重新格式化namenode 2.許可權問題 chown r hadoop hadoop tmp dfs n...