vjug24 - spring boot and kotlin, a match made in heaven

16
SPRING BOOT AND KOTLIN, A MATCH MADE IN HEAVEN @NICOLAS_FRANKEL

Upload: nicolas-frankel

Post on 29-Jan-2018

449 views

Category:

Software


0 download

TRANSCRIPT

SPRING BOOT AND KOTLIN, A MATCH MADE IN HEAVEN@NICOLAS_FRANKEL

@nicolas_frankel #kotlin #springboot 3

WHY SPRING BOOT?

@nicolas_frankel #kotlin #springboot 4

Convention over configuration

• Kickstart a project in minutes, not days

Out-of-the-box features

•Actuator

@nicolas_frankel #kotlin #springboot 5

@nicolas_frankel #kotlin #springboot 6

KOTLIN

@nicolas_frankel #kotlin #springboot 7

Open Source

Compiles to

• JVM bytecode

• JavaScript

•Native (experimental)

A "simpler Scala"

@nicolas_frankel #kotlin #springboot

KOTLIN MAIN FEATURES

@nicolas_frankel #kotlin #springboot 8

Functional and object-oriented

Statically typed

Null safety

No checked exceptions

Named & optional arguments

Lambdas

Extension functions more later

Java compatibility

(And more...)

@nicolas_frankel #kotlin #springboot

KOTLIN MAIN BENEFITS

@nicolas_frankel #kotlin #springboot 9

More expressive than Java

Improved OO

Functional too

HELLO KOTLIN!

package hello // no semicolons

// namespace-level functions

// types on the right

// no special syntax for arrays

// optional return type

fun main(args: Array<String>) {

println("Hello Kotlin!")

}

@nicolas_frankel #kotlin #springboot 10@nicolas_frankel #kotlin #springboot

THE KILLER FEATURE: EXTENSIONS

@nicolas_frankel #kotlin #springboot 11

Extension methods

Extension properties

EXTENSION METHOD

@nicolas_frankel #kotlin #springboot

Add new methods on an existing type

Called like a method on the type

Translated to static Utilmethod in the bytecode

12

ENOUGH TALK…

@nicolas_frankel #kotlin #springboot 13

SPRING WEB 5 FUNCTIONAL & KOTLIN

@nicolas_frankel #kotlin #springboot 14

https://docs.spring.io/spring/docs/current/spring-framework-reference/languages.html#kotlin-bean-definition-dsl

REACTIVE SPRING

@nicolas_frankel #kotlin #springboot 15

KEY TAKEAWAY

@nicolas_frankel #kotlin #springboot 16

Q&A

@nicolas_frankel #kotlin #springboot

http://blog.frankel.ch/

@nicolas_frankel

@nfrankel (#vjug24)

https://git.io/vVSLG

17