Questions tagged [jhipster-gateway]

A gateway is a JHipster-generated application (using application type microservice gateway when you generate it) that handles Web traffic, and serves an Angular/React application. There can be several different gateways, if you want to follow the Backends for Frontends pattern, but that’s not mandatory.

63 questions
4
votes
3 answers

When path in proxy.conf.json changed the Java app does not recognize change

I have an Angular 4 app, and I want it to point to a different URL for the backend (which is a java/spring app). When I had this problem on my localhost (it not being able to connect to my locally stood up backend) - I fixed it by adding this…
Stormy Weather
  • 295
  • 1
  • 4
  • 12
3
votes
1 answer

JHipster Microservice CORS

Is there a way to access a microservice API via the gateway without authentication? For example, if I have a public landing page that needs to read data from a microservice API. I enabled CORS and tested the API via Swagger and it works fine from…
Amar Premsaran Patel
  • 1,293
  • 7
  • 17
  • 26
2
votes
1 answer

Separation of micro frontend runtimes in JHipster

Assume we are having an microservice (MS) application containing of a bunch of micro frontends (MF). I have a lack of understanding how the MFs shall be separated and how they shall be integrated into "ONE" application? First lack of understanding…
cilap
  • 2,215
  • 1
  • 25
  • 51
2
votes
0 answers

Getting java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder error while running jhipster micro services

Jhipster version: 7.9.3 Sharing the exception log below (same error also shows up in integration test) It fails in bootRun task 18:10:34.171 [Thread-0] DEBUG org.springframework.boot.devtools.restart.classloader.RestartClassLoader - Created…
nishant pathak
  • 342
  • 1
  • 4
  • 17
2
votes
0 answers

Gateway not appearing in the jhipster registry

I have created a docker image for the gateway application, but when i run the command: docker-compose up only the microservice and the registry are UP but the gateway is not even appeared in the intances 22-08-25 10:57:23.661 ERROR 1 --- [ …
Khadija
  • 55
  • 5
2
votes
0 answers

Jhipster microservice with no registry

I am trying to create a gateway+microservice setup (using jhipster 7.8.1) something similar to this sample but without eureka service discovery. After generation, the applications boots fine but the UI (in my case Angular) is unable to reach the…
Dwaraka
  • 179
  • 8
2
votes
1 answer

Running JHipster microservices with Amazon Cognito

I followed the following guide to setup a JHipster generated Gateway with Amazon Cognito: https://blog.ippon.tech/aws-cognito-and-jhipster-for-the-love-of-oauth-2-0/ I got the gateway working great and I'm able to log in into the admin module using…
jvence
  • 417
  • 5
  • 16
1
vote
0 answers

Is web.xml needed in a Jhipster generated reactive spring-boot gateway application?

My web application is generated using Jhipster framework. It is a gateway application and I am using reactive spring-boot. I can see a web.xml is generated and it has tag inside . Is this actually needed for a spring-boot…
Aryan
  • 13
  • 3
1
vote
1 answer

jhipster translation-not-found[error.url.not.found]

I am currently working on a jhipster project. I had to encounter some difficulties with jhipster translation-not-found[error.url.not.found], that I was able to solve and I would like to share the result of my research. here is my problem in a few…
1
vote
1 answer

jHipster gateway downstream prefix

I'm updating old jHipster gateway to 7.5.0 version. New version uses Spring Cloud Gateway (with Eureka), while the old one used Zuul. In previous version working with Service Discovery having service named 'foo' and path 'bar' would register it…
1
vote
1 answer

manifest for *** not found: manifest unknown: manifest unknown

I run docker-compose -f src/main/docker/app.yml up jhipster command, but I get this error => manifest for *** not found: manifest unknown: manifest unknown
1
vote
0 answers

How do I start jhipster microservices locally in dev mode?

I generated my first microservices with JHipster. For this I used the jdl file listed below. Now I want to start the services locally. For this I execute the following commands: docker-compose -f myApp\src\main\docker\jhipster-registry.yml up -d cd…
Kleinstein11
  • 95
  • 2
  • 9
1
vote
0 answers

UUID in JDL produces "error: cannot find symbol" in gateway

I am trying to generate gateway+microservice apps in jhipster. Codegen completes fine but then the resulting app fails compilation with R:\my-ms\gateway\src\main\java\com\my\domain\Practice.java:336: error: cannot find symbol public void…
Vanessa S.
  • 21
  • 1
1
vote
1 answer

JHipster v7.1.0: TLS support in dev not working - app crashes or throw exception

I have created a simple microservice application, one gateway and one service, using JDL and enabling 'tls' in dev does not work out off the box, anyone know how to configure it in dev? This are the only documentation that I have found about tls in…
carestra
  • 75
  • 10
1
vote
0 answers

How to render bunch of XML files in JHipster React Application

I have a bunch of XML files( around 100 files) which I need to render it inside react application with proper navigation and styling. These XMLs can have anchors to different XML files for navigation and also xml-stylesheet reference too. I have…
1
2 3 4 5