JDK 11 호환성

Contents
[ ]

Aspose.Email EWSClient API는 완전히 호환되며 JDK 11과 함께 사용할 수 있습니다. JDK 11을 사용하려면 JAXB 종속성을 추가해야 합니다. 다른 Aspose.Email API는 추가 종속성 없이 정상적으로 작동합니다.

프로젝트에 다음 Maven JAXB 종속성을 추가해야 합니다:


 <dependency>

    <groupId>javax.xml.bind</groupId>

    <artifactId>jaxb-api</artifactId>

    <version>2.3.1</version>

</dependency>

<dependency>

    <groupId>com.sun.xml.bind</groupId>

    <artifactId>jaxb-impl</artifactId>

    <version>2.3.1</version>

</dependency>

<dependency>

    <groupId>com.sun.xml.bind</groupId>

    <artifactId>jaxb-core</artifactId>

    <version>2.3.0.1</version>

</dependency>

<dependency>

    <groupId>com.sun.xml.messaging.saaj</groupId>

    <artifactId>saaj-impl</artifactId>

    <version>1.5.0</version>

</dependency>