{{theTime}}

Search This Blog

Total Pageviews

Showing posts with label JHipster. Show all posts
Showing posts with label JHipster. Show all posts

JHipster Quick Start Guide

Install JHipster in Local machine
  1. Download OpenJdk  https://adoptopenjdk.net/
  2. Install node from  https://nodejs.org/en/  
  3. Install JHipster npm install -g generator-jhipster
  4. Install Eclipse
  5. Install gradle build tool -buildship from Eclipse market place
  6. Install H2 Database  http://www.h2database.com/html/installation.html
How to create first JHipster Application?
  1. Create a new folder first-jhipster-project
  2. Create a new .jdl file simple-shop-app.jdl and paste the contents from github https://raw.githubusercontent.com/ksilz/bpf-tutorial-jhipster-docker/master/simple-shop-app.jdl
  3. Goto the first-jhipster-project and run jhipster import-jdl simple-shop-app.jdl
How to run first JHipster Application?
  1. Goto first-jhipster-project and run gradlew.bat

Optimizing Java Applications for Low-Latency Microservices

Introduction Microservices architecture has become a go-to for building scalable, modular systems, but achieving low latency in Java-based...