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

Kotlin EE: Boost your Productivity @ JUG.CH St. Gallen 2018

Kotlin EE: Boost your Productivity @ JUG.CH St. Gallen 2018

Kotlin is a language for the JVM, invented by JetBrains a few years ago. But what the hell is Kotlin EE? If you never heard of Kotlin EE, don’t panic, it does not exist. But you can use it right away and boost your productivity!

I invented the term Kotlin EE as a synonym for using the Kotlin language together with the Java EE API to create services of any size (microservices, nanoservices etc.) with just a few lines of code and the ability to focus on the business logic.

Kotlin and Java EE are a perfect couple for writing micro- or nanoservices. Kotlin is a very pragmatic language, builds on many concepts and techniques from Java, designed for developer productivity. Kotlin works great with all existing Java libraries and frameworks and runs with the same level of performance as Java.

The Java EE API allows us to code against a proven and stable API. Provided libraries like JAX-RS for writing RESTful APIs and Jackson for JSON (de)serializing decrease the need for additional third-party libraries which results in a short build time and a small artifact size. Benefit from a very fast build and test feedback and stay focused on your code.

In this talk, I try to prove my statements from above. Live on stage I write a service in Kotlin with a RESTful JSON API with only a few lines of code and run the service using a local Docker cloud where you can see how these can be scaled up and down to manage fluctuating loads. Coding, building, testing, deploying, scaling: fast and efficient!

Marcus Fihlon

November 21, 2018
Tweet

More Decks by Marcus Fihlon

Other Decks in Programming

Transcript

  1. Kotlin EE Boost Your Productivity with Kotlin, Jakarta EE and

    Docker Marcus Fihlon @McPringle November 21, 2018 St. Gallen
  2. @McPringle Disclaimer The following presentation has been approved for open

    audiences only. Hypersensitivity to occasional profanity requires covering ears. All logos, photos etc. used in this presentation are the property of their respective copyright owners and are used here for educational purposes only. Any and all marks used throughout this presentation are trademarks of their respective owners. The presenter is not acting on behalf of CSS Insurance, neither as an official agent nor representative. The views expressed are those solely of the presenter. Marcus Fihlon disclaims all responsibility for any loss or damage which any person may suffer from reliance on this information or any opinion, conclusion or recommendation in this presentation whether the loss or damage is caused by any fault or negligence on the part of presenter or otherwise.
  3. @McPringle Agenda • Introduction • Why Kotlin • Why Jakarta

    EE • Kotlin EE • Live Coding • Wrap-Up
  4. @McPringle About me • Agile Coach CSS Insurance • Software

    Engineer CSS Insurance, Open Source Software • Lecturer TEKO Swiss Technical College • Speaker Conferences, User Groups, Meetups • Author Articles, Books • Community Leader Hackergarten, Java User Group Switzerland, Kotlin Swiss User Group, Voxxed Days Zürich, BaselOne
  5. @McPringle Buzzword Bingo • Monolith Bad by default! • Microservices

    Solve every problem! • Nanoservices Solve all other Problems! • Docker Just because it's cool! • Java EE / Jakarta EE Uncool and heavy framework for bloated monoliths!
  6. @McPringle About Kotlin • Statically typed • Object oriented •

    Java compatible • Easy to learn • Compiles to Java 6 Bytecode • Compiles to Java 8 Bytecode • Transpiles to JavaScript • Compiles to Native
  7. @McPringle Java Syntax public class App { public static void

    main(String[] args) { var event = "JUG 2018"; System.out.println("Hi " + event + "!"); // Hi JUG 2018! } }
  8. @McPringle Boilerplate public class App { public static void main(String[]

    args) { var event = "JUG 2018"; System.out.println("Hi " + event + "!"); } }
  9. @McPringle Kotlin Syntax fun main(args: Array<String>) { val event =

    "JUG 2018" println("Hi $event!") // Hi JUG 2018! }
  10. @McPringle Data classes data class Person(val name: String, val age:

    Int, val company: String?) val marcus = Person("Marcus", 24, null) println(marcus) // Person(name=Marcus, age=24, company=null) val marcusCSS = marcus.copy(company = "CSS Insurance") println(marcusCSS) // Person(name=Marcus, age=24, company=CSS Insurance)
  11. @McPringle Default Values data class Person(val name: String, val age:

    Int, val company: String? = null) val marcus = Person("Marcus", 24) println(marcus) // Person(name=Marcus, age=24, company=null) val marcusCSS = Person("Marcus", 24, "CSS Insurance") println(marcusCSS) // Person(name=Marcus, age=24, company=CSS Insurance)
  12. @McPringle Named Parameters data class Person(val name: String, val age:

    Int, val company: String? = null) val marcus = Person(name = "Marcus", age = 24) println(marcus) // Person(name=Marcus, age=24, company=null) val marcusCSS = marcus.copy(company = "CSS Insurance") println(marcusCSS) // Person(name=Marcus, age=24, company=CSS Insurance)
  13. @McPringle String Templates data class Person(val name: String, val age:

    Int, val company: String? = null) val marcus = Person(name = "Marcus", age = 24) println("$marcus.name is $marcus.age years old") // Marcus is 24 years old println("${marcus.name} is ${marcus.age} years old") // Marcus is 24 years old
  14. @McPringle Multiline Strings data class Person(val name: String, val age:

    Int, val company: String? = null) val marcus = Person(name = "Marcus", age = 24) println("""Name: $marcus.name Age: $marcus.age Company: $marcus.company""")
  15. @McPringle Singletons object PersonController { val persons = mutableListOf<Person>() fun

    save(person: Person) { persons.add(person) } } PersonController.save(marcus)
  16. @McPringle Coroutines fun main(args: Array<String>) { println("Before") launch(CommonPool) { delay(2000)

    println("Hello from coroutine") } println("After") // Before Thread.sleep(5000) // After } // Hello from coroutine
  17. @McPringle Typesafe Builder val page = html { head {

    title { "My Website" } } body { p { "Hello JUG 2018!" } } }
  18. @McPringle Library Management as a Service • Servlets, JSTL, EL

    and JSPs • WebSockets • JSF • JAX-RS • EJB lite • JTA • JPA • Bean Validation • CDI • Interceptors • JBatch • Concurrency • JCache • … dependencies { providedCompile "javax:javaee-api:$javaee_version" }
  19. @McPringle Ready to use containers FROM payara/micro COPY myapplication.war /opt/payara/deployments

    My Application Application Server Java Runtime Operating System changes very infrequently changes sometimes, if not delayed changes frequently changes on every build
  20. @McPringle Classes final by default buildscript { dependencies { classpath

    "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version" } } allOpen { annotation('javax.ejb.Stateless') annotation('javax.ws.rs.Path') }
  21. @McPringle Prepare the Swarm • List all available machines docker-machine

    ls • Create a new machine to be used as a manager node docker-machine create -d virtualbox mgr • Create a new machine to be used as a worker node docker-machine create -d virtualbox node01 • Login to the manager docker-machine ssh mgr • Initialize the swarm docker swarm init --advertise-addr 192.168.99.100
  22. @McPringle • Start the visualizer service docker run -it -d

    -p 8080:8080 -e HOST=192.168.99.100 \ -v /var/run/docker.sock:/var/run/docker.sock \ --name visualizer --rm dockersamples/visualizer • Open the visualizer service in a web browser http://192.168.99.100:8080/ Prepare the Visualizer
  23. @McPringle Join the Swarm • Ask the manager node for

    the token to join the swarm docker swarm join-token worker • Login to the worker node docker-machine ssh node01 • Join the worker to the swarm docker swarm join --token <token> 192.168.99.100:2377
  24. @McPringle Verify the Swarm • Login to the manager docker-machine

    ssh mgr • List all nodes docker node ls • Show more detailed information docker info
  25. @McPringle • Login to the manager docker-machine ssh mgr •

    Create a new overlay network docker network create -d overlay jug • List all networks docker network ls Create a Network
  26. @McPringle Deploy Services • Login to the manager docker-machine ssh

    mgr • Deploy the time service docker service create --network jug \ --name timeservice mcpringle/timeservice • Deploy the hello service docker service create --network jug -p 8181:8080 \ --name helloservice mcpringle/helloservice • List all services docker service ls
  27. @McPringle Testing, Scaling and Maintenance • Testing our services http

    http://192.168.99.100:8181/api/hello/jug • Scaling services up and down docker service update --replicas 3 helloservice • Take a node out of service docker node update --availability drain mgr • Take a node back into service docker node update --availability active mgr
  28. @McPringle Conclusion With Kotlin, Jakarta EE and Docker you get:

    • Easy to understand code • Fast build times • Reproducible deployments • Easy scaling of your services You are fast and efficient because you have your focus on your business code. You create business value!
  29. @McPringle Code Warriors wanted! About you • You are frighteningly

    awesome at what you do. • You can perform quick and deadly tactical strikes, as well as feats of epic badassery. Sometimes both at the same time. • You would rather refactor existing, mostly working, ugly code instead of rewriting it from scratch. OK nobody would really rather do that, but you know it's the right and honorable thing to do most of the time. • You know where your towel is. About us • Biggest Basic Health Insurance Company • 2800 Employees • 300 IT Professionals • 24 Scrum Teams • 130 Software Developers • Flexible working times • Personal development support • 6 weeks paid vacation • Great benefits • Located in Lucerne, Switzerland Contact me: [email protected]