Questions tagged [jhipster]

JHipster is a development platform to generate, develop and deploy Spring Boot, Angular/React/Vue Web applications and Spring microservices.

JHipster is a development platform to generate, develop and deploy Spring Boot + Angular/React/Vue Web applications and Spring microservices.

From the homepage:

Our goal is to generate for you a complete and modern Web app or microservice architecture, unifying:

  • A high-performance and robust Java stack on the server side with Spring Boot
  • A sleek, modern, mobile-first front-end with Angular, React and Bootstrap
  • A robust microservice architecture with the JHipster Registry, Netflix OSS, the Elastic Stack and Docker
  • A powerful workflow to build your application with Yeoman, Webpack and Maven/Gradle

To find more information:

JHipster is Open Source, and all development is done on Github

4838 questions
1
vote
0 answers

Jhipster gateway call directly microservice

I try to create a gateway G and a microservice M. I find to call M directly (without knowing it's address and port) it's sufficient make a call like: http://gatewayAddress/microserviceName/api/.... But if I do this, I have a "404 request cannot be…
Giant2
  • 461
  • 1
  • 4
  • 15
1
vote
1 answer

JHipster Redis Integration element unbound error

So I've been following this pull request to integrate redis onto jhipster generator: https://github.com/jhipster/generator-jhipster/pull/10057/commits/cd2f2865d35dfd77624dd3a38ed32822e895539d Here's what I…
jche
  • 129
  • 2
  • 16
1
vote
1 answer

JHipster JWT update on logon

I created gateway customizing the logon procedure (specifying a custom DB to read the user's datas). When DAOAuthenticationProvider do: UserDetails loadedUser =this.getUserDetailsService().loadUserByUsername(username); I see an UPDATE starting over…
Giant2
  • 461
  • 1
  • 4
  • 15
1
vote
2 answers

Spring Boot React in separate packages

I have a spring boot, java 8 API that I wanted to add a React front end to to make API operations easier to navigate and use. I used JHipster generator to generate a React app. Then I just took the web portion and dropped into my app, however…
Richard
  • 5,840
  • 36
  • 123
  • 208
1
vote
1 answer

JHipster postgresql connection fail

What causes this connection error in JHipster? 2019-07-15 10:11:55.643 DEBUG 30748 --- [nfoReplicator-0] org.postgresql.Driver : Connecting with URL: jdbc:postgresql://localhost:5432/{application_name} 2019-07-15 10:11:55.643…
jche
  • 129
  • 2
  • 16
1
vote
0 answers

How to add Swagger UI to microservice application in jhipster generator?

How would I enable swagger ui in jhipster generator for microservice application? I notice it only supports swagger for gateway, so how do I configure swagger ui so that it works on microservice application as well? Configuration Progress Added…
jche
  • 129
  • 2
  • 16
1
vote
1 answer

Junit tests fail because of Elasticsearch

I have a Junit test class in a Spring Boot project that tests the methods of a CRUD, when I open the test class by NetBeans -> right button -> Test File tests run perfectly, but when I right click on package and select Test Package the first test…
user2831852
  • 535
  • 2
  • 7
  • 22
1
vote
1 answer

How to link jhipster command to existing repo?

Suppose I cloned and modified jhipster-generator and I want to launch the application with: jhipster running this command will trigger the actual jhipster-generator repository on https://github.com/jhipster/generator-jhipster. How would I link it…
jche
  • 129
  • 2
  • 16
1
vote
0 answers

Best way of Integrating Rollbar with Spring Boot / jHipster?

I'm trying to integrate https://rollbar.com/ into a Jhipster Application. In their documentation, they suggest to create a class like the following: @ControllerAdvice @EnableWebMvc public class GlobalExceptionHandlerController { public static…
Ernest
  • 962
  • 3
  • 12
  • 28
1
vote
0 answers

How to generate jhipster application into a different directory?

When I run the following in jhipster-generator's /cli directory: cd cli node jhipster.js I'm generating the application in the same directory (cli). How would I change this directory to somewhere else? For example, export all the generated files…
jche
  • 129
  • 2
  • 16
1
vote
1 answer

why my security strategy works once on 2 calls

I upload file with REST API (with Spring boot and Jhipster), and launch treatment in Async method. @Async("taskExecutor") public void importArticle(HttpServletRequest request, ImportFichierDTO importFichierDTO, …
user1450740
  • 731
  • 10
  • 26
1
vote
1 answer

Can I deploy a jhipster 5.0.0-beta.0 application in azure?

I have an application made with jhipster version 5.0.0-beta.0 and I try to put it in Azure as a web app and did not start I tried to put the war with FTP. The war is named ROOT, the azure automatically extracts it but the application did not start.…
1
vote
0 answers

How can I disable spring cloud stream binder kafka from a jhipster generate project?

I'm setting up a project generated with jhipster and I want to disable the kafka stream cloud config from this project. I didn't remember when I chose this configuration. I can't launch my backend application because of this. This is for a webapp…
Gugu
  • 11
  • 3
1
vote
0 answers

OpenAPI / JDL and Avro schema: what is the best practice to generate entities/object definitions?

I am building a microservice piece of software with the API-first approach, I would like to re-use some of the entities in some other microservices. I can generate the object definitions at 3 different places: DTO from the open-api, Entities from…
Laurent
  • 31
  • 4
1
vote
1 answer

I am using jhipster with MongoDB. How to design entity with jhipster jdl for complex data structure (nested JSON)

I have complex JSON structure with arrays.Please let me know if there is way to design entity in JDL studio for same. Below is an example of JSON I'd like to have generated. Keys in the JSON are dynamic. { "_id" :…
Pradeep Nooney
  • 740
  • 10
  • 12