1

Is Apache Synapse updated as per Java 11 ?

  • The latest release of Apache Synapse, dates to December 2017, which is from 3.0.1 version.
  • While loading the classes from the jar, encountering ClassNotFoundException

    Caused by: java.lang.ClassNotFoundException: sun.misc.Service

a3.14_Infinity
  • 5,653
  • 7
  • 42
  • 66

1 Answers1

1

sun.misc.Service is a JDK internal API and was removed in JDK 9.

A public API that provides identical functionality has been available since JDK 6 (java.util.ServiceLoader). The Apache Synapse project should have been updated to use this (but, presumably, has not).

I don't know why this question is tagged as azul-zulu since it is not specific to those builds of OpenJDK (I work for Azul).

Speakjava
  • 3,177
  • 13
  • 15