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
1
vote
1 answer

Jhipster Gateway Zuul Route

Hi I'm adding the zuul route as below to register in the jhipster gateway and it is successful. routes: myhost: path: /greeting/** url: http://localhost:8080 However, it is appending the url as below after registration.…
Developer404
  • 5,716
  • 16
  • 64
  • 102
1
vote
1 answer

Angular Datatable Responsive Extention not working with *ngFor directive

I am working on jhipster 5.7.2 project with angular 7 and I am using angular datatables and it's responsive extension is working fine when I have static data, but when I use *ngFor directive in tag it doesn't collapse the column on resizing, just…
1
vote
2 answers

Jhipster registry "Status: (Unauthorized)" page after keycloak login

Jhipster registry:v3.3.0 Keycloak: 4.5.0.Final (https enabled) There is a jhipster registry setup using docker-compose as shown in picture. Registry talks to Keycloak for authentication. We have two keycloak instances. When configured with one…
prem kumar
  • 5,641
  • 3
  • 24
  • 36
1
vote
0 answers

jhipster seperate services during development

Goal We would like to create a development environment where we can run the latest versions of our registry, uaa and gateway on a server. We would then like to develop and run (in or outside docker) a microservice locally. This microservice should…
1
vote
1 answer

JHipster-Registry Swagger UI for microservice says invalid_token

I setup the following components using Jhipster (version of generator-jhipster: @ 5.0.1) Gateway Microservice1 Jhipster Registry Keycloak as auth server Everything works fine so far. In Jhipster Registry, when I go to Administration >> API It…
iwekesi
  • 2,228
  • 4
  • 19
  • 29
1
vote
0 answers

Scale Jhipster monolith while using keycloak

I want to use keycloak with my monolith application. Also, I want to scale. However, when generating a jhipster app, the registry option is not available for choosing OAuth2. Using registry: My primary goal is that hazelcast instances will find…
pmverma
  • 1,653
  • 13
  • 27
1
vote
2 answers

Request cannot be proceed error in Jhipster registry version 4.0.0

I downloaded jhipster registry version 4.0.0, imported and run the registry successfully, when I open localhost:8761 I am getting request cannot be proceed error, there is no error information also. When I used command mvnw I am getting an…
Pavan
  • 153
  • 3
  • 13
1
vote
0 answers

Jhipster-registry spring cloud config can not checkout properties from git branch

we are using jhipster-registry inside docker and started experiencing the below error since last week. Jhipster-registry could not check out from any branch other than master. Registry startup fails with the below error if a branch other than master…
cnu
  • 477
  • 8
  • 22
1
vote
2 answers

How to fix Invalid JWT with JHipster Registry [Docker]?

I want to build a microservices software with JHipster. I'm running jhipster-registry:v3.2.4 into Docker, i also have a microservice application (create with generator 5.0.1) but i do no generate a gateway application. I set the profiles in…
3logy
  • 2,634
  • 8
  • 46
  • 99
1
vote
2 answers

What is the purpose of generating an Entity into the Jhipster Gateway?

I saw in many tutorials that we need to go back to gateway and generate an entity after generating a microservice application with the same entity. Can someone explain me, the architectural benefits of doing so? What is the goal of generating those…
3logy
  • 2,634
  • 8
  • 46
  • 99
1
vote
0 answers

yar run->No such file or directory: 'run'

I try to run yarn run webpack: dev-> script in my package.json. The terminal returns this error: [Errno 2] No such file or directory: 'run' script in the package.json: "scripts": { "lint": "tslint 'src/main/webapp/app/**/*.ts'", "lint:fix": "tslint…
1
vote
0 answers

Using an autowired repository in a configuration class provokes a thread lock when the JHipster registry is configured on a monolithic app

I had to migrate an old JHipster app to JHipster 5.0 beta 0 to address several bugs, and while I was at it I tried to add the JHipster Registry to it (the app was load-balanced, with a Hazelcast cache). The new 5.0 app never completely started and…
1
vote
1 answer

Deploying jhipster registry on Amazon ECS

I am developing microservice based app with jHipster (but the question is for spring cloud config in general), for development purposes I was using docker-compose and now I'm creating stage environment on Amazon Elastic Container Service. I'm facing…
1
vote
0 answers

jhipster eureka registry with nonstandard server.servlet-path

My Problem I am setting up a jhipster based microservice infrastructure behind an nginx which serves as a reverse proxy. Where other components like grafana or kibana allow to configure a server_root_url or a server_basepath - to access them under…
epsilonhalbe
  • 15,637
  • 5
  • 46
  • 74
1
vote
1 answer

Mock the dependent microservices for testing the performance of another microservice

I am working on setting up the environment for testing the performance of a microservice A.This microservice A has dependency to another micro service B.Both the microservices are registered in JHipster Registry and Rippon client is used for…