Skip to content

Commit

Permalink
add readme note. address minor problems.
Browse files Browse the repository at this point in the history
  • Loading branch information
mocenas committed Jan 19, 2024
1 parent b53d4e0 commit 2f57c8e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,10 @@ This module will setup a very minimal configuration (only `quarkus-resteasy`) an
Reactive equivalent of the http/rest-client module.
Exclusions: XML test. Reason: https://quarkus.io/blog/resteasy-reactive/#what-jax-rs-features-are-missing

### `http/rest-client-reactive-vanilla`
Verifies Rest Client usage, while no request are going only internally on the server.
This module requires to not have any resteasy dependency, for an issue to be reproducible.

### `http/hibernate-validator`
Verifies HTTP endpoints validation using `quarkus-hibernate-validator` works correctly in Resteasy Classic and Resteasy Reactive.
This module will setup a simple endpoint and will validate the right message format is set when there are validation errors.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.ts.http.restclient.reactive;
package io.quarkus.ts.http.restclient.vanilla;

import java.net.URI;

Expand All @@ -16,11 +16,7 @@
public class RestCallerService {

@PostConstruct
void init() {
callRest();
}

void callRest() {
void initRestApi() {
RestClientBuilder builder = RestClientBuilder.newBuilder()//
.baseUri(URI.create("localhost"));

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.ts.http.restclient.reactive;
package io.quarkus.ts.http.restclient.vanilla;

import java.io.Closeable;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.ts.http.restclient.reactive;
package io.quarkus.ts.http.restclient.vanilla;

import jakarta.enterprise.context.ApplicationScoped;
import jakarta.ws.rs.container.ContainerRequestContext;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.ts.http.restclient.reactive;
package io.quarkus.ts.http.restclient.vanilla;

import static org.junit.jupiter.api.Assertions.fail;

Expand Down

0 comments on commit 2f57c8e

Please sign in to comment.