Giter Site home page Giter Site logo

HTTP server Middleware about activej HOT 3 CLOSED

Arkady-Dymkov avatar Arkady-Dymkov commented on June 11, 2024
HTTP server Middleware

from activej.

Comments (3)

eduard-vasinskyi avatar eduard-vasinskyi commented on June 11, 2024

Hi, @Arkady-Dymkov

You can find documentation/examples about HTTP module here. There are also examples for using RoutingServlet.

To wrap a response into a custom response you can create an AsyncServlet which wraps another AsyncServlet and then customize the response. You can add a custom exception handler the same way:

AsyncServlet mainServlet = createMainServlet();
AsyncServlet exceptionHandlingServlet = request ->
     mainServlet.serveAsync(request)
           .map((httpResponse, e) -> {
              if (e != null) {
                 // do something with exception or return a different response


                 return HttpResponse.ofCode(400).withPlainText("Bad request");
              }


              return httpResponse;
           });

from activej.

ints-hiro avatar ints-hiro commented on June 11, 2024
  1. You can see example about error handler at my repo: https://github.com/anboo44/activej-real-world-example/blob/master/src/main/java/com/uet/example/api/ServletCenter.java
  2. Wrap response to custom type:
public Promise<HttpResponse> list(HttpRequest request) {
        return userRepository.getAll().map(
            records -> records.stream().map(UserDTO::apply).toList()
        ).map(this::success);
    }

Or: Add custom response at route config

from activej.

Arkady-Dymkov avatar Arkady-Dymkov commented on June 11, 2024

Thank you! I'll close an issue)

from activej.

Related Issues (20)

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.