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

Jhipster doesn't open file uploaded

I have a entity with a blob field generated by JHipster. In the entity form I can upload a file and the form is submited normally. The problem occurs when I'm in the view page or main page of the entity and try to open the file. The Browser opens…
renanvm
  • 208
  • 3
  • 16
1
vote
1 answer

Edit entity when have a database in production

I have create my app with jhipster in july, and i have put it in production. Now i need edit a entity. When i use jhipster entity the subgenerator update the initial xml generate for the entity, but not is thes the correct work, the code need create…
1
vote
0 answers

"jhipster gae" deploys the backend, but not the Angular side

Once the jhipster app is deployed to GCP the web site says: An error has occurred :-(. It is the error you get when you run "mvnw", but not "npm start". I create a monolithic Spring and Angular 8 application with jhipster 6.2.0. I run the "jhipster…
GreatCode
  • 21
  • 4
1
vote
1 answer

Jackson cannot deserialize empy Jhipster dropdown item

I have a Jhipster based application with an entity Demand: export interface IDemand { idDemand?: number; idSubject?: number; demandCode?: string; searchProfileType?: ISearchProfileDomainBean; that has a dropdown for the last property that is not…
Elysia D.
  • 105
  • 6
1
vote
2 answers

"jhipster aws" Error: not authorized to perform: iam:GetInstanceProfile on resource: instance profile aws-elasticbeanstalk-ec2-role

I run jhipster aws in my project folder and I answer the prompts. C:\AWSworkspace\jhaws>jhipster aws INFO! Using JHipster version installed locally in current project's node_modules INFO! Executing jhipster:aws INFO! Options: from-cli: true …
GreatCode
  • 21
  • 4
1
vote
1 answer

Microservice Application ... Docker Volume for Databases or no Docker Volume?

I have an application (JHipster Gateway, UAA, Registry, 5 microservices) and each application source builds a Docker image and pushes to GitLab registry. Currently I'm running everything on Rancher using a Docker-Compose file. My volumes for Mongo…
David Whitehurst
  • 352
  • 4
  • 21
1
vote
1 answer

Jhipster-angular project cannot run at IE11

Our project is a generator project based on Jhipster. Recently we updated core-js to V3.1.3. Except IE11, the project is working fine. When we try to visit this project by using IE11 It gives us: An error has occurred :-( Usual error causes …
1
vote
1 answer

JHipster with MySQL back-end fails on first start with "table does not comply with the requirements by an external plugin"

I'm getting the following error when I try to start a new JHipster app using MySQL as the database: 2019-07-30 09:55:40.583 ERROR 35895 --- [-service-task-1] i.g.j.c.liquibase.AsyncSpringLiquibase : Liquibase could not start correctly, your…
freecouch
  • 233
  • 5
  • 19
1
vote
0 answers

JHipster how to map each file name to its corresponding template class names?

Suppose I'm generating three files (CassandraConfiguration0.java, CassandraConfiguration1.java, CassandraConfiguration2.java under a single template file (CassandraConfiguration.java.ejs): { path: SERVER_MAIN_SRC_DIR, templates: [ …
jukyduky
  • 39
  • 6
1
vote
2 answers

Fontawesome icons not showing up on "./mvnw" start of angular but do show up on "npm start"

Fontawesome icons not working properly in angular project. So I am basically having a problem with fontawesome icons. If I use tag, that only works for the icons already in navigation bar by default, I do not know how to add custom ones (like…
SkazzY
  • 11
  • 1
1
vote
1 answer

Passing parameters to popup dialog

I'm passing an id from one component to another and face this error. “cannot read property ”id" of null" --> parent route (/order.component) I have a button called Make payment and navigate by using the code below…
JiDiX
  • 11
  • 2
1
vote
0 answers

why jhipster considering user anonymous even after login

when I hit API/login successful login AUTHORIZATION_FAILURE : AUTHENTICATION_SUCCESS AUTHORIZATION_FAILURE : false ANONYMOUS_USER : false ANONYMOUS_USER : test@gmail.com when I hit API/account its failed please check below…
1
vote
1 answer

LiquiBase usage for tests in Jhipster

I want to repopulate database after each test with LiquiBase in Jhipster app. How cat I set up Junit test to do it? I see that Initially LiquiBase is run at application start up via: @Bean public SpringLiquibase liquibase(@Qualifier("taskExecutor")…
Maxim Andreev
  • 182
  • 2
  • 10
1
vote
0 answers

JHipster serve Angular frontend separately - Cors problems

We started using JHipster monolith and now we have to separate the frontend for several reasons. Building and deploying the angular www folder works. However, we always get a Cors error: Access to XMLHttpRequest at 'localhost:9000/api/authenticate…
1thingtodo
  • 95
  • 2
  • 15
1
vote
1 answer

OneToMany relationship with User

I just started a project with the code generator "Jhipster". I'm trying to make a OneToMany relationship with the "User" relationship. I've looked at a lot of topics already but I can't find any working answers. Do you have any ideas? I even tried…
matt
  • 13
  • 3