Giter Site home page Giter Site logo

murp's People

Contributors

danielflower avatar dependabot[bot] avatar jaylu avatar parj avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

parj rwicke jaylu

murp's Issues

[Suggestion] Handle WebApplicationException in requestInterceptor

With UriMapper one can check details (auth header for example) of the client request by examine the MuRequest argument, and throw WebApplicationException in uri mapper, but this sounds not very intuitive. To catch and re-throw WebApplicationException in RequestInterceptor looks better.

Index: src/main/java/io/muserver/murp/ReverseProxy.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/src/main/java/io/muserver/murp/ReverseProxy.java b/src/main/java/io/muserver/murp/ReverseProxy.java
--- a/src/main/java/io/muserver/murp/ReverseProxy.java	(revision df2abae1736303d2b6d617fdcfb02ac582e71235)
+++ b/src/main/java/io/muserver/murp/ReverseProxy.java	(date 1702447573220)
@@ -4,6 +4,7 @@
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+import javax.ws.rs.WebApplicationException;
 import java.net.InetAddress;
 import java.net.URI;
 import java.net.http.HttpClient;
@@ -291,6 +292,9 @@
         if (requestInterceptor != null) {
             try {
                 requestInterceptor.intercept(clientRequest, targetReq);
+            } catch (WebApplicationException webEx) {
+                log.error("requestInterceptor error", webEx);
+                throw webEx;
             } catch (Throwable throwable) {
                 log.info("requestInterceptor error", throwable);
                 clientResponse.status(500);

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.