| 24 | import javafx.stage.Window; |
| 25 | |
| 26 | public class MainController { |
| 27 | |
| 28 | // 设置相关信息保存 |
| 29 | public static final Map<String, Object> settingInfo = new HashMap<>(); |
| 30 | |
| 31 | |
| 32 | //FXML初始化 |
| 33 | @FXML |
| 34 | public void initialize(){ |
| 35 | // 解决tls协议的问题 如天融信防火墙无法访问. |
| 36 | Security.setProperty("jdk.tls.disabledAlgorithms", ""); |
| 37 | Security.setProperty("jdk.certpath.disabledAlgorithms", ""); |
| 38 | |
| 39 | } |
| 40 | } |
nothing calls this directly
no outgoing calls
no test coverage detected