JaxRs2Retrofit


Source link: https://github.com/Maddoc42/JaxRs2Retrofit

JaxRs2Retrofit

Creates Retrofit classes based on JAX-RS interfaces.

For example, given the following JAX-RS definition

package serverPackage;  import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam;  @Path("/helloworld") public interface SimpleResource {

@GET  @Path("/{
path
}
")  public String getHelloWorld(@PathParam("path") String path);
  
}

JaxRs2Retrofit will generate the Retrofit interface below

package clientPackage;  import retrofit.Callback; import retrofit.http.GET; import retrofit.http.Path;  public interface SimpleResource {

 @GET("/helloworld/{
path
}
")
void getHelloWorld(@Path("path") String path, Callback<String> callback);

 @GET("/helloworld/{
path
}
")
Observable<String> getHelloWorld(@Path("path") String path);

@GET("/helloworld/{
path
}
")
String getHelloWorldSynchronously(@Path("path") String path);
  
}

Download and install

JaxRs2Retrofit is available at jcenter. To start using the plugin apply the following to your 'build.gradle'

apply plugin: 'de.bitdroid.jaxrs2retrofit'  buildscript {

  repositories {

jcenter()
  
}

  dependencies {

classpath 'de.bitdroid.jaxrs2retrofit:plugin:0.4.1'
  
}
 
}

which creates a new gradle task called jaxRs2Retrofit that will generate the client interfaces.

Configuration for regular Java

While configuration is optional, below is a minimal set of options that you will probably want to change:

jaxRs2Retrofit {

  inputDir = file('your/jax/rs/sources/files') // e.g. file(project(':example-server').projectDir.toString() + '/src/main/java'
  outputDir = file('where/Retrofit/files/should/go') // e.g. file('src/main/java-gen')
  packageName = 'your.package.name ' 
}

Configuration for Android

In case you are developing for Android, configuring the plugin has to be done slightly different, as the plugin will create one JaxRs2Retrofit task for each build variant (e.g. debug, release, demo, ...).

def generatedSourcesDir = file('src/main/java-gen') def mainSourcesDir = file('src/main/java')  android {

  ...
  sourceSets {

main {

 java {

  srcDir mainSourcesDir

  srcDir generatedSourcesDir

 
}

}

  
}
 
}
  afterEvaluate {

  project.tasks.matching {
 it.name.startsWith('jaxRs2Retrofit') 
}
.each {

it.inputDir = file('/path/to/my/jaxrs/sources')

it.outputDir = generatedSourcesDir

it.packageName = 'de.bitdroid.jaxrs2retrofit'
  
}
 
}

Generating only blocking / callback / Observable Retrofit methods

JaxRs2Retrofit supports generating the following Retrofit methods for each (!) JaxRs method:

  • blocking: the "regular" Retrofit methods which will block the current thread when being called, e.g. public String getHelloWorld();
  • callback: method which has a Retrofit Callback as an parameter, e.g. public void getHelloWorld(Callback<String> callback);
  • observable: returns an JaxRs Observable Object, for those who love reactive programming, e.g. public Observable<String> getHelloWorld();

Not every project is interested in using all three options (especially since JaxRs introduces a new dependency), so which method 'type' gets generated can be configured like

jaxRs2Retrofit {

  ...
  generateSynchronousMethods = true
  generateCallbackMethods = true
  generateRxJavaMethods = true 
}

Default is true for all three.

Ignoring certain resources

In case some JaxRs resources should not be processed (e.g. your super secret admin interface which nobody should know about), a Java regex for matchign resource names can be configured in the gradle task:

jaxRs2Retrofit {

  ...
  excludedClassNamesRegex = "MySuperSecretAdminResource" 
}

Processing custom annotations

By default JaxRs2Retrofit will drop all parameter annotations that it does not know how to deal with, like @Auth User user. This behaviour can be customized registering a custom ParamConverter, for example in the build script:

jaxRs2Retrofit {

  ...
  paramConverterManager.registerConverter(ClassName.get(QueryParam.class), new ParamConverter() {

@Override

AnnotatedParam convert(AnnotatedParam param) {

 return new AnnotatedParam(

ClassName.get(String.class),

param.getAnnotationType(),

param.getAnnotationParameterMap());

}

  
}
);

This will convert all parameters annotated with @QueryParam("<value">) to @Query("<value">) String.

To create your own converter you will need to supply a ParamConverter which processes AnnotatedParam instances and map it to a ClassName.

Some prebuilt converters that might be handy:

  • MapperConverter for mapping one annotation to anther while keeping annotation arguments and parameter type
  • IgnoreConverter which ignores a parameter completely

Example

For an example of how JaxRs2Retrofit can be configured on a real application have a look at the following example-* folders in the repository:

  • example-server: a simple JaxRs server application (built using Dropwizard)
  • example-common: model classes that are being shared between potential clients and the server app
  • example-java: a (very) short Java application which has JaxRs2Retrofit configured to create Retrofit interfaces based on example-server
  • example-android: same as example-java but using Android instead

Note that all four components are configured as Gradle modules (see the settings.gradle), which allows the server and clients to depend on the example-common module (see compile project(':example-common') in the respective build.gradle files).

Features

  • Support for GET, PUT, POST, DELETE and HEAD http methods
  • Converts QueryParam, PathParam and HeaderParam to their Retrofit counterpart
  • Return values can be configured to use retrofit.Callback, rx.Observable, behave normally or use all three
  • Skip classes / methods that lack JAX RS annotations
  • Map javax.ws.rs.core.Response to retrofit.client.Response
  • Custom annotation processing (e.g. @Auth) via ParamConverter

License

Copyright 2015 Philipp Eichhorn

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Resources

A cute library to implement SearchView in a Material Design Approach.

Library to use Recycler View easily.

Pacman is a lightweight and easy to use Parallel API Calls Manager.

You might need to execute multiple API calls at once to speed up loading of your app and proceed only when you have the data from all the required API calls. Managing this using normal boolean flags or such methods can be a pain and can result to incorrect data or behaviour.

That is where Pacman comes to play, as you just set it up with some CallGroup, make the API calls and then update Pacman as and when you get a response from the call.

After all the calls are done processing, Pacman will fire a callback to an attached listener (which you have set up) and then you have do whatever processing you needed to do after the calls were done.

MeterView is a simple android meter component. It can handle exceeding values also by redrawing the whole scale.

A library to abstract out the preference implementation for Tablets and Phones. It presents a single list of all the preferences on the phone and the usual two pane layout on tablets.

A starter project for Android MVVM Project with DataBinding Library. Completed with samples for

  • RecyclerView implementation
  • ViewPager implementation
  • Retrofit implementation
  • Camera & Calendar utils

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes