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

Domain-Driven Design & REST

Domain-Driven Design & REST

Slides of the talk I gave at JAX 2016, Mayence.

@springcentral

Oliver Drotbohm

April 19, 2016
Tweet

More Decks by Oliver Drotbohm

Other Decks in Programming

Transcript

  1. 2

  2. 8

  3. 8

  4. Stringly typed code 10 public class Customer { private Long

    id; private String firstname, lastname, email; … }
  5. Stringly typed code 11 public class SomeService { public void

    createUser(String firstname,
 String lastname, String email) { … } }
  6. 12 public class Customer { private Long id; private Firstname

    firstname; private Lastname lastname; private EmailAddress emailAddress; … }
  7. Still, they’re worth it. 14 See „Power Use of Value

    Objects in DDD“ by Dan Bergh Johnsson.
  8. 16 @Value public class Customer { UUID id = UUID.randomUUID();

    Firstname firstname; Lastname lastname; EmailAddress email; @Value static class EmailAddress { String value; } }
  9. 29 Level 0: No events at all Level 1: Explicit

    operations Level 2: Some operations as events
  10. 32 Level 0: No events at all Level 1: Explicit

    operations Level 2: Some operations as events
  11. 32 Level 0: No events at all Level 1: Explicit

    operations Level 2: Some operations as events Level 3: Event Sourcing
  12. 43 Aggregate Root / Repository Collection / Item Resources IDs

    URIs @Version ETags Last Modified Property Last Modified Header Relations Links
  13. Method URI Action Step POST /orders Create new order 1

    POST/PATCH /orders/{id} Update the order (only if "payment expected") 2 DELETE /orders/{id} Cancel order (only if "payment expected") 3 PUT /orders/{id}/payment Pay order (only if "payment expected") 4 Barista preparing the order GET /orders/{id} Poll order state 5 GET /orders/{id}/receipt Access receipt DELETE /orders/{id}/receipt Conclude the order process 6
  14. Method Resource type Action Step POST orders Create new order

    1 POST/PATCH update Update the order 2 DELETE cancel Cancel order 3 PUT payment Pay order 4 Barista preparing the order GET order Poll order state 5 GET receipt Access receipt DELETE receipt Conclude the order process 6
  15. Web Service Repository - Orders Spring Data Spring Data
 REST

    Payment Spring Data Manual
 implementation Manual
 implementation