Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Get Hip with JHipster - Colorado Springs Open Source User Group 2021

Get Hip with JHipster - Colorado Springs Open Source User Group 2021

JHipster is bad-ass. It's an Apache-licensed open source project that allows you to generate Spring Boot APIs and Angular (or React/Vue) apps. It has a vibrant community and ecosystem with support for deploying to many cloud providers and using the latest DevOps buzzwords, like Docker and K8s.

This session will show you JHipster, why it's cool, and show you how to create an app with it.

JHipster 7 Demo: https://www.youtube.com/watch?v=6lf64CctDAQ
JHipster 7 Tutorial: https://github.com/mraible/jhipster7-demo#readme

Matt Raible

May 10, 2021
Tweet

More Decks by Matt Raible

Other Decks in Programming

Transcript

  1. Matt Raible | @mraible Get Hip with JHipster! May 10,

    2021 Photo by Dixie Lawrence https:// fl ickr.com/photos/dixielaw/3691270413
  2. How to Use JHipster Install JHipster and Yeoman, using npm:

    npm install -g generator-jhipster Create a directory and cd into it: take app Run it! jhipster
  3. Thriving OSS Project Started by Julien Dubois on October 21,

    2013 App Generator, Platform, Learning Tool …
  4. @mraible Hi, I’m Matt Raible Father, Husband, Skier, Mountain Biker,

    Whitewater Rafter Bus Lover Web Developer and Java Champion Okta Developer Advocate Blogger on raibledesigns.com and developer.okta.com/blog @mraible
  5. What about YOU? Are you a Java Developer? Web Developer?

    How long have you been doing web development? Do you like Spring? Java/Jakarta EE? Do you like JavaScript? TypeScript?
  6. Java 8 Parallel Collections JSR 310 Date and Time API

    Functional Interfaces with default method Lambda Expressions (a.k.a. Closures) Nashorn JavaScript Engine
  7. Java 11 New String Methods File Utility Methods Local Variable

    Syntax: var Java EE and CORBA modules removed What about Java 12?
  8. Java 17 Deprecates Applets Release Date: 14 September 2021 Learn

    More at this week’s Denver JUG! https://youtu.be/6NHBI2MojA8
  9. Hipster n. noun 1. One who is exceptionally aware of

    or interested in the latest trends and tastes.
  10. Latest trends in JavaLand? Microservices Embedded App Servers Deployment with

    Containers Environments: dev, test, production Auto-Con fi guration Reactive
  11. Spring Boot Automatically con fi gures Spring whenever possible Provides

    production-ready features such as metrics, health checks and externalized con fi guration Absolutely no code generation and no requirement for XML con fi guration Embeds Tomcat, Jetty, or Undertow directly
  12. @SpringBootApplication public class DemoApplication { public static void main(String[] args)

    { SpringApplication.run(DemoApplication.class, args); } } @Entity class Blog { @Id @GeneratedValue private Long id; private String name; // getters, setters, toString(), etc } @RepositoryRestResource interface BlogRepository extends JpaRepository<Blog, Long> { }
  13. @SpringBootApplication class NotesApplication fun main(args: Array<String>) { SpringApplication.run(NotesApplication::class.java, *args) }

    @Entity data class Note(@Id @GeneratedValue var id: Long? = null, var text: String? = null, @JsonIgnore var user: String? = null) @RepositoryRestResource interface NotesRepository : JpaRepository<Note, Long>
  14. Latest trends in Web Development? Progressive Web Applications JavaScript MVC

    Frameworks Front-End Optimization REST and GraphQL APIs CSS Grid Micro Frontends
  15. Jobs on Indeed (US) May 2021 0 4,500 9,000 13,500

    18,000 React Angular Vue Vanilla
  16. Stack Over fl ow Tags May 2021 0 100,000 200,000

    300,000 400,000 React Angular Vue
  17. @spring_io #springio17 JHipster jhipster.tech JHipster is a development platform to

    generate, develop and deploy   Spring Boot + Angular/React Web applications and Spring microservices. and Vue! ✨
  18. JHipster is Open Source Web Statistics, April 2021 304K Page

    Views / 495K on GitHub 173K Downloads GitHub Statistics 18.4K Stars 617 Contributors
  19. JHipster Foundations Spring Boot Spring Security Angular, React, or Vue

    Bootstrap Micrometer Maven or Gradle Authentication Type: cookie- based, JWT, or OAuth 2.0 / OIDC Type of Database: SQL or NoSQL Caching: EhCache or Hazelcast Elasticsearch Frameworks Project Options
  20. How to use JHipster To install JHipster and Yeoman, use

    npm: npm install -g generator-jhipster Then create a directory and cd into it: mkdir myapp && cd myapp Then run JHipster: jhipster
  21. Demo Time! Generate a basic blog application Look at its

    fi les and con fi guration 
 Generate the CRUD entities Limit blogs to current user, allow HTML Deploy to … all in 20 minutes!
  22. OAuth 2.0 and OpenID Connect OpenID Connect OAuth 2.0 HTTP

    OpenID Connect is for authentication 
 
 OAuth 2.0 is for authorization
  23. The JHipster Mini-Book Written with Asciidoctor Quick and to the

    point, 164 pages Developed a Real World App: www.21-points.com Free Download from infoq.com/minibooks/jhipster-mini-book
  24. Lines of Code in 21-Points 0 6500 13000 19500 26000

    Project Created Entities Generated Business Logic and UI 25,670 23,590 16,728
  25. Project Creation Entities Generated Biz Logic and UI 0 10000

    20000 30000 2,999 2,648 1,839 9,472 8,911 5,523 8,383 7,696 5,892 Java TypeScript HTML Lines of Code by Language
  26. Action! Try Spring Boot Try Angular, React, or Vue Try

    JHipster Explore PWAs Enjoy the bootiful experience!