發表文章

目前顯示的是 12月, 2023的文章

java.security useSystemPropertiesFile

在Java使用TLS的部分 有時候會遇到需使用TLSv1.0 v1.1的狀況 須由 java.security file 去調整 tls.disabledAlgorithms 拿掉 TLSv1.0 TLSv1.1 但執行後卻又不如預期,還是跑出一樣的結果 這時有可能是執行時 tls.disabledAlgorithms 讀取的來源導致的 可能是從 Security properties(java.security  也可能是從 System properties 這時可以加入此執行參數 -Djava.security.debug=properties 並透過以下二項目確認 properties: java.security.disableSystemPropertiesFile=false properties: security.useSystemPropertiesFile=false https://stackoverflow.com/questions/73958582/java-how-to-know-the-actual-security-properties-in-use