...

/

Solution: Quarkus Web

Solution: Quarkus Web

Go over the solution for the Quarkus Web challenge.

We'll cover the following...

Solution

For the below solution, we used the following Quarkus extensions:

  • RESTEasy Reactive
  • RESTEasy Reactive Jackson
  • Smallrye OpenAPI
  • WebSockets

package io.educative;

import io.quarkus.test.junit.QuarkusIntegrationTest;

@QuarkusIntegrationTest
public class GreetingResourceIT extends GreetingResourceTest {
    // Execute the same tests but in packaged mode.
}
Quarkus web challenge solution

In ...