wip issue #22 - fixed api gateway controller's request mapping

This commit is contained in:
dartpopikyardo
2016-09-02 23:52:29 +03:00
parent 6cf774da2a
commit 8f2fc83a34

View File

@@ -56,7 +56,7 @@ public class GatewayController {
.build();
}
@RequestMapping(value = "*/api/**", method = {GET, POST})
@RequestMapping(value = "/api/**", method = {GET, POST})
public ResponseEntity<String> proxyRequest(HttpServletRequest request) throws NoSuchRequestHandlingMethodException, IOException, URISyntaxException {
HttpUriRequest proxiedRequest = createHttpUriRequest(request);
logger.info("request: {}", proxiedRequest);