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
12
votes
1 answer

Configuring elasticsearch in JHipster project using prod yml

I have an application built using the Jhipter generator, which is based on Spring Boot. The latest version of Jhipster allows you to include Elasticsearch as an option, so I have an application which runs an embedded instance of Elasticsearch in…
ajain
  • 488
  • 4
  • 23
12
votes
4 answers

Check Sum error in JHipster when editing an existing entity generated using the entity wizard

I am using Postgresql for my db and created all the entities using the JHipster entity wizard. When I try to make any changes like adding/removing fields, relations to an existing entity I am getting a check sum error and Liquibase is not starting.…
Shashi Deshetti
  • 1,354
  • 2
  • 11
  • 22
12
votes
4 answers

add attributes to user entity in jhipster

I want to add some attributes to the user entity, when I googled about it, I found a similar question : How to modify existing entity generated with jhipster? when I followed the steps in this post, I couldn't find the file user.json anywhere as…
Renaud is Not Bill Gates
  • 1,684
  • 34
  • 105
  • 191
12
votes
3 answers

How to create a many to many relationship with extra columns in jhipster?

The jhipster doesn't support create many to many relationships with extra fields. What is the best way to create many to many association with extra columns in jhispter? Should i create a two one-to-many relationship with extra fields?
Vítor Nóbrega
  • 1,219
  • 4
  • 26
  • 53
11
votes
1 answer

JDK 11 migration issue from JDK8, Illegal reflective access by com.fasterxml.jackson.module.afterburner.util.MyClassLoader

I have successfully migrated my spring boot project(running in prod env) from JDK8 to JDK11. I can build, test, package, install, deploy and everything. After starting the project from my IDE, I have the following warnings in my log, which doesn't…
Mahesh kumar
  • 119
  • 1
  • 7
11
votes
0 answers

JSONB Column Type

I was reading through the JHipster "Creating an entity", and did not see any Field Type related to JSONB. Does JHipster have any examples of jsonb field types?
user2344484
  • 131
  • 5
11
votes
1 answer

How to share JWT token among multiple subdomains?

I Have separate Authentication app and multiple spa apps hosted on subdomains and I want to share the JWT token generated (which is generated when the user logs in from authentication app) from Authentication app to other apps hosted under…
Karunaker Reddy V
  • 443
  • 2
  • 5
  • 16
11
votes
4 answers

jhipster: How to create a one-to-many relationship with user entity?

I have created my domain using jhipster-uml JDL script. Now I want to establish a O2M from User to an an existing entity (company). Is there a way to do that via a JDL script? The script would need to re-declare every entity the relationship needs.…
DhafirNz
  • 627
  • 3
  • 9
  • 20
11
votes
1 answer

Using inheritance on jhipster entities

I have the typical model: Employee and it's subclasses RegularEmployee and ContractEmployee how can I deal with this in jhipster? I did a JOINED inheritance strategy on hibernate. that was a no brainer. But I can't get jhipster to save the…
Pacu
  • 1,985
  • 20
  • 33
11
votes
6 answers

JHipster - Log Files

I have a JHipster application running and I would like to know where are the logs files. Where are they generated ? (It's a newbie question, but can't find anything) I am on the "Dev" profile with the default configuration. (Didn't change anything…
Maurice
  • 2,129
  • 2
  • 25
  • 33
11
votes
4 answers

Deploying a JHipster Application to Heroku

Has anyone had luck deploying a JHipster application to Heroku? I think a custom buildpack is required, but I'm not 100% sure, as I'm new to Heroku.
Jeremiah Atwood
  • 153
  • 1
  • 6
10
votes
2 answers

Accessing Swagger Documentation with JHipster

I have generated an app server only through jhipster using only. yo jhipster --skip-client It had generated all the necessary api calls I needed however upon accessing http://localhost:8080/swagger-ui/index.html I ended on a 404. I was under the…
user962206
  • 15,637
  • 61
  • 177
  • 270
10
votes
5 answers

jhipster liquibase validation error after modify entity

I was trying to add an field to my entity as a CLOB. When using the JHipster CLI it was no problem to add it. Now, when i trying to start my application i get the following validation error from…
krypto88
  • 161
  • 2
  • 2
  • 5
10
votes
3 answers

yo cannot find jhipster after yarn global add generator-jhipster

I'm trying to generate a jHipster project using yarn - https://jhipster.github.io/installation/ I installed Node from its website and yarn with brew. yarn version 0.19.1 node version v7.5.0 OSX Sierra 10.12.3 When I run yarn global add…
TechCrunch
  • 2,924
  • 5
  • 45
  • 79
10
votes
4 answers

How to avoid 302 response on https spring security unit test?

I've got java Spring Security app (built with jhipster) and I'm trying to add some unit tests that test logic based on the current authenticated user. To do that i've configured my MockMvc object to use a web application context and spring…
codemonkey
  • 1,213
  • 2
  • 14
  • 31