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
17
votes
7 answers

How to update the JHipster project after updating JHipster generator?

I updated my JHipster installation as per this page by running the command npm update -g generator-jhipster But to update my application I am not sure where should I run the next command yo jhipster. I tried running it from the root of existing…
Dhanush Gopinath
  • 5,652
  • 6
  • 37
  • 68
16
votes
2 answers

JHipster: CORS fails on form login (actual request, not pre-flight)

I would like to extend my monolithic setup of jHipster with a second front-end application which accesses the same API from a different URL. As a first step, I've enabled CORS in the application.yml and I'm sending the request from the front-end…
ssc-hrep3
  • 15,024
  • 7
  • 48
  • 87
16
votes
5 answers

Application generated with JHipster 4 returning blank page on 8080, but not on 9000

I've create an application with JHipster v4. When I make a request on port 8080 it is returning a blank page. If I use yarn start, and I make a request to 9000 port, it is answering correctly. Any idea?
Víctor
  • 416
  • 5
  • 15
15
votes
5 answers

jhipster - gyp verb `which` failed Error: not found: python2

Below is the error that I get, when I try to generate a new project with JHipster: gyp verb check python checking for Python executable "python2" in the PATH gyp verb `which` failed Error: not found: python2 gyp verb check python checking for Python…
leventunver
  • 3,269
  • 7
  • 24
  • 39
15
votes
5 answers

What is .net alternative to jhipster

Which framework provides similar features to .Net as jhipster does for Java. I understand that there are separate libraries that can be brought together to work as the solution, but is there something pre-packaged to make things as quick and smooth…
Asif Shiraz
  • 864
  • 1
  • 12
  • 27
15
votes
7 answers

Error creating bean with name 'liquibase' defined in class path resource ... /config/DatabaseConfiguration.class

I have this annoying error when starting Embedded Tomcat on my jHipster Project. Spent a lot of time trying to resolve it but can't figure out why it's happening. It started happening after updating project from main rep but I also implemented…
ivan
  • 151
  • 1
  • 1
  • 4
15
votes
6 answers

Spring-boot slow to start

When I launch my jhipster app using "mvn spring-boot:run", it takes up to 60 seconds to start... First part of my log is : [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO]…
user1848637
  • 181
  • 1
  • 1
  • 6
14
votes
4 answers

How to fix "lombok.javac.apt.LombokProcessor could not be initialized"

My question relates to "https://stackoverflow.com/questions/35236104/gradle-build-fails-on-lombok-annotated-classes". I am using JHipster and Lombok 1.16.18 with build.gradle: ... apply plugin: 'net.ltgt.apt' ... dependencies { provided…
werwuifi
  • 367
  • 1
  • 4
  • 15
13
votes
6 answers

How to solve RequestTooBigException, connection terminated as request was larger than 10485760?

I'm trying to upload a 6MB file to my JHipster app server. However, I get the following error. Where can I find the related configuration? io.undertow.server.RequestTooBigException: UT000020: Connection terminated as request was larger than…
user1723583
  • 553
  • 1
  • 6
  • 18
13
votes
5 answers

JPA Static Metamodel not recognized by IntelliJ

I generated the application with JHipster with Gradle as the build tool. When I created entity I added filtering support, which generated JPA static metamodel. But IntelliJ doesn't recognize the metamodels. I have enabled the annotation processor…
A0__oN
  • 8,740
  • 6
  • 40
  • 61
13
votes
2 answers

Angular HTTP Error Empty Untyped Response

I have an Angular/JHipster application that makes HTTP calls. I want to do error handling in my Observable subscriptions. However, when the first time the error handler is invoked, the err object is not a response, it's a raw {} Object. All…
JJ Zabkar
  • 3,792
  • 7
  • 45
  • 65
13
votes
4 answers

Steps to integrate PrimeNG with JHipster

We have been trying to incorporate PrimeNG components into a JHipster (angular 4) generated project with no success. After download and install PrimeNG into our project, we are able to import classes but when we include the corresponding tags into…
Andrés Quesada
  • 133
  • 1
  • 4
13
votes
3 answers

How to create unique constraint for 2 columns in JDL-Studio?

I have following entity configuration: entity AirplaneModelSeat { id Long, seatNo String required } relationship ManyToOne { AirplaneModelSeat{modelId(model)} to AirplaneModel } This entity configuration creates such a…
Halil
  • 1,795
  • 1
  • 24
  • 39
13
votes
8 answers

Mapstruct generated class not being injected by Spring in JHipster web app

I'm developing a web app created with JHipster v2.20.0. Using Eclipse 4.5.0 WTP as IDE. The Spring configuration is annotation based. I've just merged this pull with our code. When I try to run the application inside Eclipse I get this…
Rafael Leite
  • 147
  • 1
  • 1
  • 13
13
votes
3 answers

Should I use `src/main/webapp` to serve static content with Spring Boot?

The documentation of Spring Boot states: Do not use the src/main/webapp directory if your application will be packaged as a jar. But surprisingly the Spring Boot Sample for static web files is using the /src/main/webapp directory. And also…
asmaier
  • 11,132
  • 11
  • 76
  • 103