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

Choosing a DigitalOcean Droplet (VM) for a Huge Docker Compose

Where do I begin? I have a Docker compose e.g. that has a JHipster UAA container, a JHipster Registry, a JHipster Gateway (my custom web app), and 5 JHipster Microservices. I can form a docker compose with everything and say 2 microservices and run…
David Whitehurst
  • 352
  • 4
  • 21
1
vote
0 answers

Running jHipster war file under Tomcat

I am trying to deploy a new jHipster application to Tomcat using version 6.1.0. A previous app using older versions worked just fine. I changed my pom.xml to generate a war instead of a jar file. If I run the war file as "java -jar app.war" it works…
Rick
  • 61
  • 3
1
vote
0 answers

Add more data with faker.js generates liquibase error

I've generated a monolith sample app with JHipster 6.1.2 and h2 for dev, with a simple entity. It generates 10 lines of sample data with fakerjs, but if I add one more line in the data.csv file it generates a liquibase error: 2019-06-28 21:59:45.991…
Gerald
  • 101
  • 1
  • 10
1
vote
1 answer

how to set an initial value for an entity attribute in Jhipster JDL?

Is there a way to set the initial number of votes (assignedVotesPoints) of my entity (ProposalUser) to let's say 100 when the entity is created using JDL? entity ProposalUser { creationDate Instant required, assignedVotesPoints Long } I…
Mike
  • 1,059
  • 5
  • 28
  • 51
1
vote
1 answer

Spring swichUserFilter redirects to target Url without switching

I have some data that i need to replicated for userA. As i dont know userA's password, i want to login as adminUser & switch to userA & post the data. Related to this i have two questions :- Question 1) I am first trying to login & switch using the…
N29
  • 141
  • 1
  • 17
1
vote
1 answer

Adding Custom Validation in Jhipster User Authentication

Since Jhipster(Angular + Springboot Scaffolding) uses JWT for authentication, we have a custom login model which checks user authentication. Now the code goes something like this(UserJWTController.java): @PostMapping("/authenticate") @Timed …
Aayush
  • 409
  • 4
  • 17
1
vote
0 answers

What does maven'spring-cloud-security depency do in jhipster microservices?

When I was researching the microserives generated by jhipster, I found that the maven spring-cloud-security depency package was not used in Gateway. When I commented out spring-cloud-security depency, the Gateway project not report an…
tanjie
  • 19
  • 1
  • 5
1
vote
1 answer

Jhipster: lazy-loading module loadChildren dynamic import not working on Angular 8

I'm using dynamic import so I have to change my tsconfig.json like this to target my code to esnext module. ./src/main/webapp/app/app-routing.module.ts 14:40 Module parse failed: Unexpected token (14:40) File was processed with these loaders: *…
Turtuvshin
  • 620
  • 1
  • 10
  • 25
1
vote
0 answers

JHIPSTER No access admin log and metrics

Since I upgrade my project from jhipster 5.82 to 6.1.0, I have no data in screnn admin Metrics and Logs When I go on this screen, I have no data. In my console, I see error with HTTP Request : error: SyntaxError: Unexpected token < in JSON at…
user1450740
  • 731
  • 10
  • 26
1
vote
1 answer

Can I export basic entities User etc?

Is it possible to use the 'jhipster export-jdl ' command to also export the 'base' entities e.g. User, Authority etc ? The reason I ask is because I would like to use JDL studio to create a ManyToOne from one of my own entities to User
1977
  • 2,580
  • 6
  • 26
  • 37
1
vote
0 answers

How to generate angular components using jdl file in jhipster geenrate front end application

I have separated the front end and back end code using jhipster and question is how to use same jdl file which we used to generate the back end code to generate the front end angular components.
P Rajesh
  • 326
  • 1
  • 2
  • 11
1
vote
0 answers

How do I expose an executable jar externally?

I have a Jhipster monolithic (React/Java Springboot) application, compiled as an executable jar. I have dropped the jar in a folder on an Amazon EC2 instance. I believe the application builds correctly. I am provided an internal IP (or localhost)…
Topher
  • 35
  • 4
1
vote
1 answer

OAuth2AuthenticationToken not been recognized in getAccount JHipster 6.0.1

I have a native android client with OAuth2 authentication to my JHipster monolithic app. It worked properly with the JHipster version 5.7.2, but now I am using version 6.0.1 and I am not been able to get the current user by using…
J. Gatica
  • 153
  • 1
  • 10
1
vote
0 answers

How to fix 'sourceMap.map.originalPositionFor is not a function'

I have a JHipster app, when i try generate a war file by executing: mvnw -Pprod package it produces a error in command yarn run webpack:test: D:\application\node_modules\source-map-support\source-map-support.js:199 var originalPosition =…
Cruasant
  • 33
  • 9
1
vote
0 answers

Is there a way to not overwrite the modifications done to entities when regenerating them?

I've recently joined a project that uses jHipster. The data model is still actively evolving and because jHipster is used for entity generation the developers are reluctant to make changes to the entity classes like using all the JPA annotations not…
Wojtek
  • 33
  • 4
1 2 3
99
100