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
9
votes
5 answers

Is it possible to generate entities from an existing database model in JHipster?

Is there a way to generate entities from an existing database model or do I have to create all entities with yeoman (yo) on my own? I've heard about such a technique from the Spring Roo project.
seveves
  • 1,282
  • 4
  • 17
  • 37
9
votes
1 answer

OAuth2 SSO for multiple resource servers with spring boot and jHipster

So, I have an oAuth2 app which is jHipster app (using mongodb). I want to connect 3 resource apps to that app but all of them should share the same user base, so that the users should be able to login only once. Is there a way to configure multiple…
9
votes
1 answer

jhipster oauth : How can i get the access_token via CURL

i'm trying to use the jhipster tool in order to create a new project with the oauth2 authentication. The project example work fine, i can login with the angularjs interface, but can't understand how can i create a new user and then get the access…
8
votes
0 answers

JHipster - Angular Universal integration example (issues and thoughts)

I have integrated a JHipster project with Angular Universal. You may find it here along with an explanation. I'd say it works pretty well for a simple project. It is also not hard to integrate (it's mostly configuration). After tinkering with it for…
Kuhax
  • 99
  • 2
8
votes
1 answer

Keycloak cookies - KC_RESTART validation

I was going through Keycloak cookies, and specifically on KC_RESTART. While reading on link : Keycloak Authentication flow found that KC_RESTART will be used to re-create authentication flow when browser root session is expired. I was wondering how…
Sarang
  • 547
  • 8
  • 20
8
votes
1 answer

Preventing JHipster import-jdl from overwriting changes when updating entities

With my current workflow I have to check in git and manually read changes like added functions after every import-jdl that touches an entitiy I changed. Is there a way to add functions to the classes JHipster creates without actually changing the…
Emmanuel M
  • 145
  • 6
8
votes
1 answer

What feature need to be enabled for entities filtering on Jhipster?

What those words "When this feature is enabled" on this documentation http://www.jhipster.tech/entities-filtering/ refer to ? My jdl file is OK (thanks for the recent implemenattion : https://github.com/jhipster/generator-jhipster/issues/6286…
DamDam
  • 133
  • 1
  • 9
8
votes
2 answers

Create Primary Key other than Id in Jhipster Entity

I want to create two entities. Departments(Department Id,Department Name) and Employees(Employee Id, Employee Name, Address). I want these primary keys for the tables: Department Id for Departments, Employee Id for Employees. And Jhipster creates…
parth makadia
  • 93
  • 1
  • 1
  • 3
8
votes
3 answers

Install Jhipster old version

I'm trying to install an old version of jhipster by using the following commands: sudo npm install -g generator-jhipster@3.2 or yarn global add generator-jhipster@3.2 with the same result: "generator-jhipster@3.2.1" has no binaries And bash:…
unde08
  • 133
  • 1
  • 4
8
votes
1 answer

JHipster JWT authentication across browser tabs

I'm getting started with jHipster.. I have configured to use JWT for authentication. When signed in using one tab and try to open secured page in other tab, I'm not authenticated in the new tab Is this the default behavior of JHipster? Is it…
Swadeesh
  • 576
  • 1
  • 4
  • 23
8
votes
1 answer

Index not Found Exception

So, back again I have a JHipster generated project which uses an elasticsearch java client embedded in spring boot. I have recently done some major changes to the datasets since we've been migrating a whole new bunch of data from different…
Steven
  • 1,236
  • 1
  • 13
  • 37
8
votes
1 answer

How can I social login by jHipster REST api?

I want use jHipster for native mobile app backend. I can register and login through api REST perfectly. But, how I do a social login through api? I cant find any endpoint Thanks!
Dan
  • 91
  • 4
8
votes
3 answers

Spring Data JPA OutOfMemoryError: GC overhead limit exceeded

I'm developing an application with huge size of entities(3072). We used jhipster for project structure. Everthing was ok so far until we want to upgrade Spring Boot version from 1.3.2 ( 1.9.2 spring-data-jpa ) to current 1.5.1 (spring-data-jpa…
Runomu
  • 411
  • 1
  • 8
  • 18
8
votes
1 answer

JHipster : Registering a user with additional information

I am developping an application using JHispter 3.12.2. Since I needed more information than what JHipster provides, I created an entity UserExtra containing two Strings : a phone number and a skype address. I linked this entity to the JHI_User in a…
Paul-Etienne
  • 796
  • 9
  • 23
8
votes
1 answer

JHipster VMs vs DTOs

i would like to understand a bit more about the decision of JHipster's option of generating DTOs. I've got several questions about it. Why is it called DTO? It is described in the release notes of JHipster 3.6.0, that it can be used to execute…
Stefan Tomm
  • 141
  • 2
  • 8