gwt-jackson :: REST

gwt-jackson-rest is a GWT REST client that uses gwt-jackson as serializer/deserializer mechanism

License

License

Categories

Categories

GWT (Google Web Toolkit) User Interface Web Frameworks Jackson Data JSON
GroupId

GroupId

com.github.nmorel.gwtjackson
ArtifactId

ArtifactId

gwt-jackson-rest
Last Version

Last Version

0.5.1
Release Date

Release Date

Type

Type

pom
Description

Description

gwt-jackson :: REST
gwt-jackson-rest is a GWT REST client that uses gwt-jackson as serializer/deserializer mechanism
Project URL

Project URL

https://github.com/nmorel/gwt-jackson-rest
Source Code Management

Source Code Management

https://github.com/nmorel/gwt-jackson-rest

Download gwt-jackson-rest

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.nmorel.gwtjackson/gwt-jackson-rest/ -->
<dependency>
    <groupId>com.github.nmorel.gwtjackson</groupId>
    <artifactId>gwt-jackson-rest</artifactId>
    <version>0.5.1</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.nmorel.gwtjackson/gwt-jackson-rest/
implementation 'com.github.nmorel.gwtjackson:gwt-jackson-rest:0.5.1'
// https://jarcasting.com/artifacts/com.github.nmorel.gwtjackson/gwt-jackson-rest/
implementation ("com.github.nmorel.gwtjackson:gwt-jackson-rest:0.5.1")
'com.github.nmorel.gwtjackson:gwt-jackson-rest:pom:0.5.1'
<dependency org="com.github.nmorel.gwtjackson" name="gwt-jackson-rest" rev="0.5.1">
  <artifact name="gwt-jackson-rest" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.github.nmorel.gwtjackson', module='gwt-jackson-rest', version='0.5.1')
)
libraryDependencies += "com.github.nmorel.gwtjackson" % "gwt-jackson-rest" % "0.5.1"
[com.github.nmorel.gwtjackson/gwt-jackson-rest "0.5.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • api
  • processor
  • examples

gwt-jackson-rest

gwt-jackson-rest is a simple GWT REST client using gwt-jackson. It includes an api and an annotation processor which generates an helper class to easily send REST request to an annotated REST service.

Quick start

Add <inherits name="com.github.nmorel.gwtjackson.rest.GwtJacksonRest" /> to your module descriptor XML file.

Then annotate your REST service with the annotation GenRestBuilder. An helper class will be generated in the same package by default. You can specify your package by passing the option package to the annotation processor.

Check the example.

With Maven

<dependency>
  <groupId>com.github.nmorel.gwtjackson</groupId>
  <artifactId>gwt-jackson-rest-processor</artifactId>
  <version>0.5.1</version>
  <scope>provided</scope>
</dependency>

You can also get maven snapshots using the following repository :

<repository>
  <id>oss-sonatype-snapshots</id>
  <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  <snapshots>
    <enabled>true</enabled>
  </snapshots>
</repository>

Copyright and license

Copyright 2015 Nicolas Morel under the Apache 2.0 license.

Versions

Version
0.5.1
0.5.0
0.4.1
0.4.0
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0