REST Java Library


License

License

Categories

Categories

RESTEasy Program Interface REST Frameworks
GroupId

GroupId

com.scalified
ArtifactId

ArtifactId

jaxrs-resteasy3
Last Version

Last Version

1.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

REST Java Library
REST Java Library
Project URL

Project URL

https://github.com/Scalified/rest
Source Code Management

Source Code Management

https://github.com/Scalified/rest.git

Download jaxrs-resteasy3

How to add to project

<!-- https://jarcasting.com/artifacts/com.scalified/jaxrs-resteasy3/ -->
<dependency>
    <groupId>com.scalified</groupId>
    <artifactId>jaxrs-resteasy3</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.scalified/jaxrs-resteasy3/
implementation 'com.scalified:jaxrs-resteasy3:1.0.1'
// https://jarcasting.com/artifacts/com.scalified/jaxrs-resteasy3/
implementation ("com.scalified:jaxrs-resteasy3:1.0.1")
'com.scalified:jaxrs-resteasy3:jar:1.0.1'
<dependency org="com.scalified" name="jaxrs-resteasy3" rev="1.0.1">
  <artifact name="jaxrs-resteasy3" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.scalified', module='jaxrs-resteasy3', version='1.0.1')
)
libraryDependencies += "com.scalified" % "jaxrs-resteasy3" % "1.0.1"
[com.scalified/jaxrs-resteasy3 "1.0.1"]

Dependencies

compile (1)

Group / Artifact Type Version
com.scalified : jaxrs jar 1.0.1

Project Modules

There are no modules declared in this project.

REST Java Library

Build Status Maven Central

Description

This Library provides extensions for Java API for RESTful Web Services and its implementations

The Library consists of several modules, which can be used separately

Requirements

Gradle dependency

jaxrs

dependencies {
	implementation "com.scalified:jaxrs:$version"
}

jaxrs-resteasy3

dependencies {
	implementation "com.scalified:jaxrs-resteasy3:$version"
}

Changelog

Changelog

Usage

jaxrs

Rest Client

import com.scalified.rest.jaxrs.client.JaxRsRestClient;
import com.scalified.rest.jaxrs.client.Request;
import com.scalified.rest.jaxrs.client.RestClient;

import javax.ws.rs.client.Client;
import javax.ws.rs.client.Entity;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.util.Optional;
import java.util.Set;

// Creating Rest Client Instance
Client jaxRsClient;
// ... client initialization skipped
RestClient client = new JaxRsRestClient(jaxRsClient);

// Constructing Request Object
Request request = Request.builder("http://localhost:8080")
				.path("/application")
				.queryParam("role", "admin")
				.accepting(MediaType.APPLICATION_JSON)
				.entity(Entity.json("{\"message\": \"Hello\"}"))
				.header("Authorization", "Basic YWRtaW46YWRtaW4=")
				.onSuccess(response -> System.out.println("Success"))
				.onNotFound(response -> System.out.println("Not Found"))
				.onUnsuccessfulResponse(response -> System.out.println("Unsuccessful Response"))
				.onFailure(throwable -> System.out.println("Failure"))
				.build();

// Executing HTTP GET Requests
Response response = client.get(request);
Optional<String> result = client.get(request, String.class);
Optional<Set<String>> results = client.get(request, new GenericType<Set<String>>(){});

// Executing HTTP POST Requests
Response response = client.post(request);
Optional<String> result = client.post(request, String.class);
Optional<Set<String>> results = client.post(request, new GenericType<Set<String>>(){});

// Executing HTTP PUT Requests
Response response = client.put(request);
Optional<String> result = client.put(request, String.class);
Optional<Set<String>> results = client.put(request, new GenericType<Set<String>>(){});

// Executing HTTP DELETE Requests
Response response = client.delete(request);
Optional<String> result = client.delete(request, String.class);
Optional<Set<String>> results = client.delete(request, new GenericType<Set<String>>(){});

// Checking Response Is Successfull
Response response;
// ... response initialization skipped
boolean successful = RestClient.isSuccessful(response)

// Constructing New Response Object From The Given One
Response response;
// ... response initialization skipped
Response newResponse = RestClient.from(response); // HTTP response status code, entity and headers retained

Extensions

import com.scalified.rest.jaxrs.extension.ExtendedMediaType;
import com.scalified.rest.jaxrs.extension.ExtendedHttpHeaders;
import com.scalified.rest.jaxrs.extension.ExtendedStatus;

import javax.ws.rs.core.Response;

// Using extended HTTP media types
String applicationPdfMediaType = ExtendedMediaType.APPLICATION_PDF;

// Using extended HTTP headers
String pragmaHeader = ExtendedHttpHeaders.PRAGMA;

// Using extended HTTP statuses
Response.StatusType unprocessableEntityStatusType = ExtendedStatus.UNPROCESSABLE_ENTITY;

CORS Feature

import com.scalified.rest.jaxrs.cors.CorsFilter;

import javax.ws.rs.core.Feature;
import javax.ws.rs.core.FeatureContext;
import javax.ws.rs.ext.Provider;

@Provider
public class CorsFeature implements Feature {

	@Override
	public boolean configure(FeatureContext context) {
		CorsFilter filter = new CorsFilter("*");
		context.register(filter);
		return true;
	}

}

URI Utilities

import com.scalified.rest.jaxrs.commons.UriUtils;

String url = UriUtils.encode("http://localhost:8080/a prämie");
assert url.equals("http%3A%2F%2Flocalhost%3A8080%2Fa%20pr%C3%A4mie");

Error Response Mapping

import com.scalified.rest.jaxrs.error.ErrorResponse;

import javax.ws.rs.core.Response;
import javax.ws.rs.ext.ExceptionMapper;
import javax.ws.rs.ext.Provider;

@Provider
public class DefaultExceptionMapper implements ExceptionMapper<Exception> {

	@Override
	public Response toResponse(Exception e) {
		ErrorResponse message = new ErrorResponse(Response.Status.INTERNAL_SERVER_ERROR, e.getMessage());
		return Response.status(Response.Status.INTERNAL_SERVER_ERROR)
				.entity(message)
				.build();
	}

}

jaxrs-resteasy3

Multipart

import com.scalified.rest.jaxrs.extension.ExtendedMediaType;
import com.scalified.rest.jaxrs.resteasy.multipart.MultipartUtils;
import org.jboss.resteasy.plugins.providers.multipart.MultipartFormDataInput;

import javax.ws.rs.Consumes;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.core.Response;
import java.util.Map;

@Path("/")
public class Controller {

    @POST
    @Path("/files")
    @Consumes(ExtendedMediaType.MULTIPART_FORM_DATA)
    public Response uploadAttachment(MultipartFormDataInput input) {
    	
    	// Extracting generic types from MultipartFormDataInput
    	Long someValue = MultipartUtils.extractPart(input, "someValue", Long.class);

        // Extracting String parts from MultipartFormDataInput
        String someId = MultipartUtils.extractPart(input, "someId");

        // Extracting files from MultipartFormDataInput
        Map<String, byte[]> files = MultipartUtils.extractFiles(input);

        return Response.ok()
                .build();
    }

}

License

MIT License

Copyright (c) 2018 Scalified

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Scalified Links

com.scalified

Scalified

Versions

Version
1.0.1
1.0.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1