Slide 1

Slide 1 text

Reactive Java Microservices with Spring Boot and JHipster June 8, 2023 Matt Raible | @mraible Photo by Tianyi Ma 
 https://unsplash.com/photos/o7f4K13f2eE

Slide 2

Slide 2 text

No content

Slide 3

Slide 3 text

What is JHipster?

Slide 4

Slide 4 text

How to Use JHipster Install JHipster using npm: npm install -g generator-jhipster Create a directory and cd into it: take app Run it! jhipster

Slide 5

Slide 5 text

Monolith, Gateway, or Microservices? Spring MVC or Spring WebFlux? Authentication Type? Database Type? Build Tool? Web Framework? JHipster Options

Slide 6

Slide 6 text

https://start.jhipster.tech

Slide 7

Slide 7 text

Thriving OSS Project Started by Julien Dubois on October 21, 2013 App Generator, Platform, Learning Tool …

Slide 8

Slide 8 text

@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

Slide 9

Slide 9 text

No content

Slide 10

Slide 10 text

No content

Slide 11

Slide 11 text

No content

Slide 12

Slide 12 text

developer.okta.com

Slide 13

Slide 13 text

developer.auth0.com

Slide 14

Slide 14 text

Spring History of Spring October 2002 - Rod Johnson writes J2EE Design & Development 2004 - Spring 1.0 2006 - Spring 2.0 with better XML 2009 - JavaConfig 2014 - Spring Boot 1.0 2015 - Spring Cloud 1.0 🍃

Slide 15

Slide 15 text

Microservices Visionaries

Slide 16

Slide 16 text

“Any organization that designs a system (defined broadly) will produce a design whose structure is a copy of the organization's communication structure.” Conway’s Law Melvin Conway 1967

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

“Do one thing and do it well.”

Slide 19

Slide 19 text

No content

Slide 20

Slide 20 text

No content

Slide 21

Slide 21 text

Spring WebFlux!

Slide 22

Slide 22 text

Spring MVC Code @PostMapping("/points") public ResponseEntity createPoints(@Valid @RequestBody Points points) throws URISyntaxException { log.debug("REST request to save Points : {}", points); if (points.getId() != null) { throw new BadRequestAlertException("A new points cannot already have an ID", ENTITY_NAME, "idexists"); } Points result = pointsRepository.save(points); pointsSearchRepository.save(result); return ResponseEntity .created(new URI("/api/points/" + result.getId())) .headers(HeaderUtil.createEntityCreationAlert( applicationName, true, ENTITY_NAME, result.getId().toString())) .body(result); }

Slide 23

Slide 23 text

Spring WebFlux Code @PostMapping("/points") public Mono> createPoints(@Valid @RequestBody Points points) throws URISyntaxException { log.debug("REST request to save Points : {}", points); if (points.getId() != null) { throw new BadRequestAlertException("A new points cannot already have an ID", ENTITY_NAME, "idexists"); } return pointsRepository .save(points) .flatMap(pointsSearchRepository::save) .map( result -> { try { return ResponseEntity .created(new URI("/api/points/" + result.getId())) .headers(HeaderUtil.createEntityCreationAlert( applicationName, true, ENTITY_NAME, result.getId().toString())) .body(result); } catch (URISyntaxException e) { throw new RuntimeException(e); } } ); }

Slide 24

Slide 24 text

Spring Cloud Gateway

Slide 25

Slide 25 text

yelp.com/callback Back to redirect URI with authorization code Exchange code for access token and ID token accounts.google.com Email ********** Go to authorization server Redirect: yelp.com/callback Scope: openid profile Authorization Server yelp.com Connect with Google Resource owner Client accounts.google.com 
 Allow Yelp to access your public profile and contacts? No Yes Request consent from resource owner Hello Matt! accounts.google Get user info 
 with access token /userinfo OAuth 2.0 and OIDC

Slide 26

Slide 26 text

No content

Slide 27

Slide 27 text

Demo Create microservices with JDL Run apps and e2e tests Switch identity providers Run everything with Docker https://github.com/oktadev/auth0- java-microservices-examples 🤓

Slide 28

Slide 28 text

https://auth0.com/blog/micro-frontends-for-java-microservices

Slide 29

Slide 29 text

https://github.com/jhipster/jhipster-lite

Slide 30

Slide 30 text

What You Learned

Slide 31

Slide 31 text

https://developer.okta.com/blog/2021/01/20/reactive-java-microservices

Slide 32

Slide 32 text

https://developer.okta.com/blog/2021/06/01/kubernetes-spring-boot-jhipster

Slide 33

Slide 33 text

npm install -g generator-jhipster-kotlin

Slide 34

Slide 34 text

https://wiki.openjdk.java.net/display/loom/Main

Slide 35

Slide 35 text

https://spring.io/blog/2023/02/27/web-applications-and-project-loom

Slide 36

Slide 36 text

JHipster is Knowledge

Slide 37

Slide 37 text

The JHipster Mini-Book 
 Written with Asciidoctor Free download from InfoQ: infoq.com/minibooks/jhipster-mini-book Quick and to the point, 161 pages Developed a real-world app: www.21-points.com Buy for $20 or download for FREE

Slide 38

Slide 38 text

The Angular Mini-Book 
 Written with Asciidoctor Free download from InfoQ: infoq.com/minibooks/angular-mini-book Angular 15 and Spring Boot 3.0 Angular Material, Bootstrap, Kotlin Spring Security and best practices Deploy separate apps and single artifact

Slide 39

Slide 39 text

Learn More stackoverflow.com Spring Boot spring.io/guides JHipster www.jhipster.tech Auth0 developer.auth0.com

Slide 40

Slide 40 text

developer.okta.com/blog/tags/java @oktadev

Slide 41

Slide 41 text

developer.auth0.com @auth0

Slide 42

Slide 42 text

Join us as an Auth0 Ambassador! auth0.com/ambassador-program

Slide 43

Slide 43 text

https://a0.to/nl-signup/java https://developer.auth0.com/newsletter

Slide 44

Slide 44 text

Action: Try JHipster! 🚀 npm i -g generator-jhipster

Slide 45

Slide 45 text

git clone https://github.com/oktadeveloper/okta-spring-web fl ux-react-example.git https://github.com/oktadev/auth0-java-microservices-examples Use the Source, Luke!

Slide 46

Slide 46 text

developer.okta.com

Slide 47

Slide 47 text

Thanks! Keep in Touch raibledesigns.com @mraible Presentations speakerdeck.com/mraible Code github.com/oktadev developer.auth0.com