Java 開發筆記2

Java獲取參數名稱

https://blog.csdn.net/z69183787/article/details/81117525java

DefaultParameterNameDiscoverer().getParameterNames(real_bean_type.methods.first())

啓動參數

-Xmx 是VM參數 , 寫到 jar 後面.
-jar 後面 兩個減號是 jar 參數. 不能斷..net

限制線程數量:線程

java -Dloader.path=jar -Dfile.encoding=utf-8 -Xmx250m -jar xxx.jar --server.undertow.io-threads=16 --server.undertow.worker-threads=32 --server.dbIp=localhostcode

動態化註解配置.

@Configuration
@EnableScheduling
@ConditionalOnProperty(prefix = "scheduling", name="enabled", havingValue="true", matchIfMissing = true)
public class SchedulerConfig {

}

這樣就讓定時任務實現參數化.server

相關文章
相關標籤/搜索