Questions tagged [jhipster-registry]

Like the JHipster generator, it is an Open Source, Apache 2-licensed application, and its source code is available on GitHub under the JHipster organization at jhipster/jhipster-registry.

The JHipster Registry has three main purposes:

  • It is a an Eureka server, that serves as a discovery server for applications. This is how JHipster handles routing, load balancing and scalability for all applications.
  • It is a Spring Cloud Config server, that provide runtime configuration to all applications.
  • It is an administration server, with dashboards to monitor and manage applications.

All those features are packaged into one convenient application with a modern Angular-based user interface.

To find more information :

172 questions
0
votes
1 answer

Run Jhipster-registry locally without browser sync

I'm trying to build a micro-services applications with JHipster. I'm following this tutorial. I've successfully run jhipster-registry locally (I've cloned it, then run the commands ./mvnw and yarn start to be able to see the applications…
Neamesis
  • 704
  • 1
  • 13
  • 28
0
votes
1 answer

Unable to register node js app in jhipster gateway

I'm trying to register the node js application into Jhipster gateway by adding as zuul routes in the yml file. As you are aware, the node js application does not have the context path. Hence, it overrides the gateway url. Please help how to register…
Developer404
  • 5,716
  • 16
  • 64
  • 102
0
votes
1 answer

JHipster Registry could not show client applications metrics

I created new JHipster microservice application for demo purpose. I used JHipster Registry version 4.1.1 and create a new UAA application. Both applications started without error. I want to show UAA application metrics in Registry Dashboard…
Hieu Le
  • 7
  • 2
0
votes
1 answer

Jhipster registry gives me an Exit: io.github.jhipster.registry.service.ZuulUpdaterService.updateZuulRoutes() with result = null

I have a problem with Jhipster registry: git clone https://github.com/jhipster/jhipster-registry cd jhipster-registry mvnw And I get this back (while my browser is empty...) 2019-03-18 16:22:41.069 INFO 24384 --- [ restartedMain]…
Mike
  • 1,059
  • 5
  • 28
  • 51
0
votes
1 answer

JHipster startup on Kubernetes

After a fresh deployment of our application on a kubernetes cluster we always will end up with a hazelcast network partitioning problem (split brain). All three replicas starting at the same time. Hazelcast is configured to use the jhipster-registry…
Guido Zockoll
  • 141
  • 3
  • 11
0
votes
0 answers

jhipster-registry with oauth2 - eureka and config endpoints unsecured?

Is it correct that the eureka and config endpoints provided by the jhipster-registry are not secured or am I doing something wrong? I started the jhipster-registry (latest docker image) with oauth2 profile and a keycloak configuration. When I try…
Kristina
  • 31
  • 1
0
votes
0 answers

How can I test a microservice secured by ouath2 using jhipster registry swagger API

I have generated a microservice secured by oauth2 using jhipster 5.6.0 and I'm using keycloak. I have launched jhipster registry also using oauth profile. I can not test my microservice using swagger in jhipster-rgistry. I'm able to log in in the…
mehdi mohammadi
  • 331
  • 3
  • 10
0
votes
0 answers

UAA Server keeps connecting to localhost for registry

In the case of a JHipster microservices architecture, I run an UAA server named AuthServer in a docker container and the Jhipster registry in another container. The docker containers run in the same user-bridge network configuration. As the registry…
Frédéric Praca
  • 1,620
  • 15
  • 29
0
votes
1 answer

Set Value of form field as current date in JHipster

We are trying to set default value of form field as current date in Jhipster. Now, jhipster provides a moment format to a date which is eventually a ngbdatepicker. If we try to change the input type to "date" we cannot assign moment instance with…
Aayush
  • 409
  • 4
  • 17
0
votes
0 answers

Jhipster Registry: Caused by: java.lang.RuntimeException: No JWT secret key is configured, the application cannot start

I have created micro services gateway application from jHipster application create configuration, as per instruction provided at link Jhipster Registry I ran the command : docker-compose -f src/main/docker/jhipster-registry.yml up but failed with…
kj007
  • 6,073
  • 4
  • 29
  • 47
0
votes
0 answers

JHipster-registry blank page

I'm trying to compile a frontend and typed yarn start to start the frontend of jhipster-registry. However I get this error which I can't fix. Moreover, the page is either blank or I got 404. I have enclosed the whole stack trace: warning From…
TomKo1
  • 214
  • 2
  • 14
0
votes
1 answer

Jhipster with JWT authentication integration with okta

I have created an application with JWT authentication. I want to integrate with OKTA. Just to gain knowledge I have created a sample application with oauth authentication and was able to successfully integrate with okta. Now I would like to…
0
votes
2 answers

okta unable to add my jhipster microservice application

Initially I have setup microservice application with oauth2 and keycloak. I was able to do that successfully. I have added all things such as SECURITY_OAUTH2_CLIENT_ACCESS_TOKEN_URI, SECURITY_OAUTH2_CLIENT_USER_AUTHORIZATION_URI,…
0
votes
1 answer

Dynamic hostname in @AuthorizedFeignClient

In a microservice system, I have an interface with the annotation @AuthorizedFeignClient(name="send-email", url="http://localhost:8080/utils/api/email"), in the development environment it works correctly, however, in the Docker environment, I need…
user2831852
  • 535
  • 2
  • 7
  • 22
0
votes
1 answer

Jhipster EHCache doesn't evict id from duplicated entity

I'm actually developing a jhipster application. It's an awsome code generator but it didn't allow me to make relationships to default User entity. So i foundout the table name of that entity and I made another entity MyUser linked to the same table…
Jose Miguel
  • 355
  • 2
  • 6
  • 18