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 swipe layout similar to iOS Mail app.

This library allows you to send simple data from WebView to Java. Sends the data via url.

Arc Layout is a view group with which you can add a arc-shaped container in your layout. Two main variables are the direction and the curvature of the arc.

Custom implementation of NavigationView for using custom layout for navigation items and header.

Getting location updates requires lots of bolierplate code in Android, You need to take care of

  • Google Play services availablity Check
  • Update Google play Service Dialog
  • Creation of GoogleApiClient and its callbacks connected,disconnected etc.
  • Stopping and releasing resources for location updates
  • Handling Location permission scenarios
  • Checking Location services are On or Off
  • Getting lastknown location is not so easy either
  • Fallback to last known location if not getting location after certain duration

Android-EasyLocation does all this stuff in background, so that you can concentrate on your business logic than handling all above

Stops the user from keep using the App after a period of time based on app build time. Mainly to have control preview versions handed out using e.g.: hockeyapp or fabric.

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