Giter Club home page Giter Club logo

quarkus-examples's People

Contributors

acasanova99 avatar jacobdotcosta avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

quarkus-examples's Issues

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

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

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

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.