Movatterモバイル変換


[0]ホーム

URL:


Dev guideRecipesAPI ReferenceChangelog
Dev guideAPI ReferenceRecipesChangelogUser GuideGitHubDev CommunityOptimizely AcademySubmit a ticketLog InFeature Experimentation
Dev guide
All
Pages
Start typing to search…

Install the Java SDK

Describes the steps necessary to install the Optimizely Feature Experimentation Java SDK into your application.

The Java SDK is distributed through Maven Central and is created with source and target compatibility ofJava 8 (version 1.8). Thecore-api andhttpclient packages areoptimizely-sdk-core-api andoptimizely-sdk-httpclient, respectively.

core-api requiresorg.slf4j:slf4j-api:1.7.16 and a supported JSON parser. We currently integrate with these parsers (listed in their selection order priority):

  1. Jackson
  2. GSON
  3. json.org
  4. json-simple

If more than one of these parsers are available at runtime, thecore-api chooses one for use per the selection order priority. If none of these packages are already provided in your project's classpath, you must add one.

📘

Note

Optimizely Feature Experimentation previously distributed the Java SDK through Bintray/JCenter. But, as of April 27, 2021,Bintray/JCenter will become a read-only repository indefinitely. The publish repository has been migrated toMavenCentral for the SDK version 3.8.1 or later. Older versions will still be available in JCenter.

repositories {    mavenCentral()    jcenter()}dependencies {    compile 'com.optimizely.ab:core-api:3.8.1'    compile 'com.optimizely.ab:core-httpclient-impl:3.8.1'    compile 'org.apache.httpcomponents:httpclient:4.5.6'    // The SDK integrates with multiple JSON parsers. Here, we use Jackson.    compile 'com.fasterxml.jackson.core:jackson-core:2.9.8'    compile 'com.fasterxml.jackson.core:jackson-annotations:2.9.8'    compile 'com.fasterxml.jackson.core:jackson-databind:2.9.8'    compile 'org.slf4j:slf4j-api:1.7.16'    compile 'ch.qos.logback:logback-classic:1.1.7'}

The full source code is onGitHub.

Updated 17 days ago



[8]ページ先頭

©2009-2025 Movatter.jp