今天在上班的時候,踩了一些坑,先把他乙個個記下來,也當作學習了。
package com.xiaoxiao.current_limiting.util;
import org.springframework.beans.bean***ception;
import org.springframework.stereotype.component;
@component
public
class
springcontextutil
implements
/** 寫這個是因為今天有踩了乙個大坑,就是自己new乙個類是不能用@autowared注入的,所以就寫了乙個獲取bean的方式
*/public
static
t getbean
(class
c)}
string clazz = thread.
currentthread()
.getstacktrace()
[1].
getclassname()
;string method = thread.
currentthread()
.getstackthread()
[1].
getmethodname()
;
string clazz =
this
.getclass()
.getname()
;//獲得類名
@configuration
@conditionalonclass
(redisoperations.
class
)@enableconfigurationproperties
(redisproperties.
class
)@import()
public
class
redisautoconfiguration
//第二個是string,string
@bean
@conditionalo****singbean
public stringredistemplate stringredistemplate
( redisconnectionfactory redisconnectionfactory)
throws unknownhostexception
}
//會匯入失敗
@autowired
private redistemplate
redistemplate;
//這樣可以匯入成功
@autowired
private redistemplate redistemplate;
//按照名字裝配,可以匯入成功
@resource
private redistemplate
redistemplate;
long totalmillissec = system.
currenttimemillis()
;//獲取毫秒數
long totalsec = totalmillissec /
1000
;//轉化為秒
//獲取當前的秒數
long currentsec = totalsec %60;
//獲取當前的分
long totalminutes = totalsec /60;
long currentminutes = totalminutes %60;
//求出現在的小時
long totalhour = totalminutes /60;
long currenthour = totalhour %
24;
(2020 11 9 學習記錄
所謂曲面上某點的高斯曲率,即該點兩個主曲率的乘積。把曲面上的頂點對映到單位球的球心,把法線的端點對映到球面上,即將曲面上的點與球面上的點建立了一種對應,叫做曲面的球面表示,也叫高斯對映。高斯曲率的幾何意義,即球面上的面積 曲面區域性面積的極限,可以看出,高斯曲率確實反映了曲面區域性的彎曲程度。利用高...
Android學習日誌2020 1 19
activity與fragment生命週期類似,但是fragment依賴於activity。並且只要onstart方法被呼叫一定會啟動onresume方法。如果在recycview的adapter中註冊監聽事件將會導致衝突,只會響應最後乙個item位置的事件。可以將監聽註冊在recycleview的...
2020119 多執行緒暫停和喚醒
最近在工作中有涉及到工作流的暫停和喚醒的設計和開發任務,裡面有些坑,拿出來分享下 工作流的暫停和喚醒主要有三種方式 第一種使用wait notify 通過檢視原始碼可以看到park只能暫停當前執行緒,不能暫停指定執行緒,所以我採用重寫locksupport方式 執行緒阻塞 喚醒 自定義locksup...