GithubHelp home page GithubHelp logo

trikorasolns / quarkus-examples Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 3.0 160 KB

Quarkus Examples

Home Page: https://www.trikorasolutions.com/

License: Apache License 2.0

Java 84.51% HTML 15.49%
quarkus java hibernate resteasy

quarkus-examples's Introduction

Quarkus Examples

Building all subprojects

Build all subprojects by calling the quarkusBuildSubprojects task.

./gradlew quarkusBuildSubprojects

Quarkus Intro

This project uses Quarkus, the Supersonic Subatomic Java Framework.

If you want to learn more about Quarkus, please visit its website: https://quarkus.io/ .

Running the application in dev mode

You can run your application in dev mode that enables live coding using:

./gradlew quarkusDev
Note
Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.

Packaging and running the application

The application can be packaged using:

./gradlew build

It produces the quarkus-run.jar file in the build/quarkus-app/ directory. Be aware that it’s not an über-jar as the dependencies are copied into the build/quarkus-app/lib/ directory.

If you want to build an über-jar, execute the following command:

./gradlew build -Dquarkus.package.type=uber-jar

The application is now runnable using java -jar build/quarkus-app/quarkus-run.jar.

Creating a native executable

You can create a native executable using:

./gradlew build -Dquarkus.package.type=native

Or, if you don’t have GraalVM installed, you can run the native executable build in a container using:

./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true

You can then execute your native executable with: ./build/quarkus-hibernate-reactive-panache-1.0.0-SNAPSHOT-runner

If you want to learn more about building native executables, please consult https://quarkus.io/guides/gradle-tooling.

Provided Code

RESTEasy JAX-RS

Easily start your RESTful Web Services

quarkus-examples's People

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

quarkus-examples's Issues

Improve Hibernate Reactive Panache Example

  • The update query does not persist in the DB although the statement is inside a transaction that should made the commit automatically.
  • Add unique and non-unique indexes to entities

Handling exceptions in Panache

Use wrapper as :
@ReactiveTransactional
private Function<Calendar, Uni<? extends Calendar>> createCalendarFunction() {
return calendar -> {
try {
return repoCalendar.persistAndFlush(calendar);
} catch (PersistenceException ex) {
LOGGER.info("PersistenceException: {}", ex);
if (ex.getMessage().contains("Duplicate entry")) {
throw new DuplicateObjectException("Calendar", calendar.calendarKey.toString());
} else {
throw new com.trikorasolutions.keycloak.client.exception.TrikoraGenericException(ex.getMessage());
}
}
};
}

In order to handle exceptions from the hibernate

Fix ripe Hibernate Reactive example

Ripe transaction is not bieng commited so the validation is failing.

2021-09-18 13:18:13,339 ERROR [io.qua.test] (Test runner thread) ==================== TEST REPORT #1 ====================
2021-09-18 13:18:13,339 ERROR [io.qua.test] (Test runner thread) Test FruitReactiveResourceTest#testFruitRipeReactive() failed 
: java.lang.AssertionError: 1 expectation failed.
Response body doesn't match expectation.
Expected: a string containing "\"ripen\":true"
  Actual: {"name":"pear","description":"Pear","family":"Rosaceae","ripen":false}

        at io.restassured.internal.ValidatableResponseImpl.body(ValidatableResponseImpl.groovy)
        at com.trikorasolutions.example.FruitReactiveResourceTest.testFruitRipeReactive(FruitReactiveResourceTest.java:94)

2021-09-18 13:18:13,345 ERROR [io.qua.test] (Test runner thread) >>>>>>>>>>>>>>>>>>>> 1 TEST FAILED <<<<<<<<<<<<<<<<<<<<
1 test failed (3 passing, 0 skipped), 4 tests were run in 5777ms. Tests completed at 13:18:13.

Keycloak user CRUD

Examples of the basic CRUD operations over users:

  • Create
  • Retrieve
  • Update
  • Delete

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.