Apache HttpClient failing with Java 11 on macOS

后端 未结 2 1018
抹茶落季
抹茶落季 2021-01-13 02:14

I\'m trying to move my code from Java 8 to Java 11, this code...

 private static String  readMultiHttpsUrlResultAsString(List mbRecordingIds, S         


        
2条回答
  •  没有蜡笔的小新
    2021-01-13 02:33

    Eventually with the help of Anish worked out it was a problem with missing policy files, and was only a problem with the bundle built with AppBunder.

    The jdk code really seemed to expect a conf folder in the JRE, there was one in the OpenJDk but not once once was bundled into my app with AppBundler. So I downloaded the latest AppBundler src code and rebuilt it, rebuilt my appbundle and it was fixed, the conf folder was now included and application runs without error.

提交回复
热议问题