recipeDsl


License

License

MIT
GroupId

GroupId

com.ing.baker
ArtifactId

ArtifactId

baker-recipe-dsl_2.11
Last Version

Last Version

2.0.3
Release Date

Release Date

Type

Type

jar
Description

Description

recipeDsl
recipeDsl
Project URL

Project URL

https://github.com/ing-bank/baker
Project Organization

Project Organization

com.ing.baker
Source Code Management

Source Code Management

https://github.com/ing-bank/baker

Download baker-recipe-dsl_2.11

How to add to project

<!-- https://jarcasting.com/artifacts/com.ing.baker/baker-recipe-dsl_2.11/ -->
<dependency>
    <groupId>com.ing.baker</groupId>
    <artifactId>baker-recipe-dsl_2.11</artifactId>
    <version>2.0.3</version>
</dependency>
// https://jarcasting.com/artifacts/com.ing.baker/baker-recipe-dsl_2.11/
implementation 'com.ing.baker:baker-recipe-dsl_2.11:2.0.3'
// https://jarcasting.com/artifacts/com.ing.baker/baker-recipe-dsl_2.11/
implementation ("com.ing.baker:baker-recipe-dsl_2.11:2.0.3")
'com.ing.baker:baker-recipe-dsl_2.11:jar:2.0.3'
<dependency org="com.ing.baker" name="baker-recipe-dsl_2.11" rev="2.0.3">
  <artifact name="baker-recipe-dsl_2.11" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.ing.baker', module='baker-recipe-dsl_2.11', version='2.0.3')
)
libraryDependencies += "com.ing.baker" % "baker-recipe-dsl_2.11" % "2.0.3"
[com.ing.baker/baker-recipe-dsl_2.11 "2.0.3"]

Dependencies

compile (5)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.11.12
com.ing.baker : baker-types_2.11 jar 2.0.3
javax.inject : javax.inject jar 1
com.thoughtworks.paranamer : paranamer jar 2.8
org.scala-lang : scala-reflect jar 2.11.12

test (5)

Group / Artifact Type Version
org.scalatest : scalatest_2.11 jar 3.0.5
org.scalacheck : scalacheck_2.11 jar 1.13.4
com.novocode : junit-interface jar 0.11
org.slf4j : slf4j-api jar 1.7.25
ch.qos.logback : logback-classic jar 1.2.2

Project Modules

There are no modules declared in this project.

BAKER

Build Status Maven Central codecov.io

Overview

Baker is a library that reduces the effort to orchestrate (micro)service-based process flows. Developers declare the orchestration logic in a recipe. A recipe is made out of interactions (system calls), ingredients (data) and events. A visual representation (shown below) of the recipe allows product owners, architects and developers to talk the same language.

The official documentation website of Baker: Official Documentation.

An introductory presentation of Baker: Baker talk @ Amsterdam.Scala meetup.

A talk about Baker at the Scale By the Bay 2017 conference: Declare, verify and execute microservices-based process flows.

For an example web-shop recipe in Scala, see the examples sub-project. Java developers new to Baker can use this workshop to get familiar with the library by reading the workshop assignment PDF document and making the unit tests green.

WebShop Recipe:

  val webShopRecipe: Recipe =
    Recipe("WebShop")
      .withInteractions(
        validateOrder,
        manufactureGoods
          .withRequiredEvents(valid, paymentMade),
        shipGoods,
        sendInvoice
          .withRequiredEvent(goodsShipped)
      )
      .withSensoryEvents(
        customerInfoReceived,
        orderPlaced,
        paymentMade)

A visual representation of the WebShop recipe looks like the following, where the events are colored in gray, ingredients in orange and interactions in lilac:

Baker consists of a DSL that allows developers to choose interactions from a catalogue and re-use them in their own recipes. Developers can use Java or Scala as a programming language.

A Catalogue of Reusable Interactions

Let's look at three different products that a bank would sell to customers:

Checking Account Savings Account Customer Onboarding
Verify Person's Identity Verify Person's Identity Verify Person's Identity
Register Person Register Person Register Person
Open Checking Account Open Savings Account n/a
Issue Debit Card n/a n/a
Send Message Send Message Send Message
Register Product Possession Register Product Possession n/a

As you can see, there are similarities in the products.

It becomes interesting when you're able to combine the same interactions in different recipes. New functionality can then be built quickly by re-using what's already available.

How to apply Baker?

Applying Baker will only be successful if you make sure that:

  1. You've compared the products your company is selling and there are similarities;
  2. You've defined a catalogue of those capabilities necessary to deliver the products from;
  3. Each capability (interaction in Baker terms) is accessible via an API of any sort (could be a micro-service, web-service, so on);

Getting Started

To get started with SBT, simply add the following to your build.sbt file:

libraryDependencies += "com.ing.baker" %% "baker-recipe-dsl" % "3.0.3"
libraryDependencies += "com.ing.baker" %% "baker-runtime" % "3.0.3"
libraryDependencies += "com.ing.baker" %% "baker-compiler" % "3.0.3"

From 1.3.x to 2.0.x we cross compile to both Scala 2.11 and 2.12.

Earlier releases are only available for Scala 2.11.

From 3.0.x we support only Scala 2.12.

How to contribute?

Execute the following commands in your terminal to get started with the development of Baker:

$ git clone https://github.com/ing-bank/baker.git
$ cd baker
$ sbt
> compile
> test

How to visualize your recipe?

Baker can turn a recipe into a DOT representation. It can then be visualized using the following web-site (http://www.webgraphviz.com).

Another way to visualize the recipe is to install Graphviz on your development machine. On your Mac, install using brew:

brew install graphviz

To test that all works fine, save the following text in a graph.dot file:

digraph d {
A [label="Hello"]
B [label="World"]
C [label="Everyone"]
A -> { B C }
}

Assuming you have the graphviz dot command you can create an SVG by running:

dot -v -Tsvg -O graph.dot

Alternatively you can use graphviz-java to generate the SVG in your code:

import guru.nidi.graphviz.engine.{Format, Graphviz}
import guru.nidi.graphviz.parse.Parser

val g = Parser.read(getRecipeVisualization)
Graphviz.fromGraph(g).render(Format.SVG).toString

Preview the results:

open graph.dot.svg

You are all set to visualize your recipes now!

To use custom fonts, see http://www.graphviz.org/doc/fontfaq.txt.

References

  1. DOT Graph Description Language (https://en.wikipedia.org/wiki/DOT_(graph_description_language)) - explains more about the format Baker uses to produce a graphical representation of the recipe;
  2. Order fulfillment (https://en.wikipedia.org/wiki/Order_fulfillment) - gives an idea about the theory behind order fulfillment strategies. As you are in the business of producing and selling products to people, you are in the business of fulfillment;
com.ing.baker

ING Bank

ING Open-source projects

Versions

Version
2.0.3
2.0.2
2.0.1
2.0.0
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.1
1.2.0