List of videos

Spring I/O 2024 Keynote

Spring I/O 2024 - 30-31May, Barcelona

Watch
Spring: your next Java micro-framework - Alexey Nesterov @ Spring I/O Bridge

Spring I/O Bridge (online conference) - 15 May 2020 GitHub repo: https://github.com/alek-sys/spring-microframework-talk Quite often Spring is opposed to so called “micro” frameworks in Java world. “Micro” means different things to different people, but usually it implies reduced runtime footprint and code simplicity. In this talk, I’ll show that you don’t have to abandon your favourite Spring Boot to a new and shiny thing to achieve the same result. Also I’ll show how to find the balance between simplicity and productivity, improve runtime efficiency, e.g. image size, memory footprint, and startup time when using Spring Boot.

Watch
Introducing Neo4j SDN/RX - Michael Simons @ Spring I/O Bridge

Spring I/O Bridge (online conference) - 15 May 2020 What do you get when you bring two people together having a lot of experience as consultants and developers working with object mapping frameworks? Both of them having enjoyed the simplicity and advanced features that an object mapper brings in regards of * Mapping * CRUD operations * Caching and both have also suffered from * Mapping * Caching * Bad queries The Neo4j-Object-Graph-Mapper (Neo4j-OGM) was heavily influence by Hibernate-ORM (Object relational mapping) and that's not a bad thing. Hibernate-ORM addresses a lot of things that make a developers life hard. It originates from a time where databases have been seen as second-class-citizens in a Java applications. Both me, Michael Simons, and also my colleague Gerrit Meier see the value of working directly with a database, regardless whether it's a graph or a relational database. At Neo4j, we started a big cross team effort to provide reactive database access to Neo4j, the world's leading graph database, in 2019: We wanted to have an reactive stack, right from the query execution engine, to transport layer, the driver and then at least having one premier data abstraction layer. The later gave us the opportunity to codify our experience and also our preferences in working with databases in the form of SDN/RX, a new Spring Data Module for Neo4j. We wanted: * to attribute the fact that there's no silver bullet in terms of working with databases * to have composable modules for the Spring eco system, like direct access to Neo4j through the official driver but also integration with Spring's application level transactions * to have Spring Data powered mapping with all the benefits it brings: Support for immutable classes (Kotlin data classes, Java with a bit of boilerplate or JDK 14 records) * to cater for larger domains with tons of domain objects without having repositories for each of them * to have support for reactive infrastructure In this short introduction I'll show you the building blocks about what the Spring Data Team at Neo4j created based on the experience of working with different database technologies from within Spring Boot. We will cover starters, auto configuration and of course, all the aspects described above.

Watch
AI on Spring I love it when an OptaPlan comes together - Geoffrey De Smet @ Spring I/O Bridge

Spring I/O Bridge (online conference) - 15 May 2020 GitHub repo: https://github.com/kiegroup/optaplanner/tree/7.38.0.Final/optaplanner-quickstarts/spring-boot-school-timetabling Forget about Machine Learning. Planning optimization is the most profitable AI technology on this planet. The world is full of planning challenges, such as vehicle routing problems, maintenance scheduling and employee rostering. Find the quickest routes to visit n locations with k vehicles. Assign n shifts to k employees, taking into account skills and availability. Few people realize how much AI algorithms improve those solutions. For example, when a big telco started using OptaPlanner to plan their fleet of tens of thousands of technicians, they expected a driving time reduction of 1-2%. It was 25%. That saves them hundreds of millions of dollars and millions of kilograms of CO² emissions, every year. In this session I’ll show you how to code a highschool timetabling application from scratch, with Spring Boot and OptaPlanner. It ‘ll generate the perfect lesson schedule, for both students and teachers.

Watch
Action plan to become a Spring Certified Professional - Iuliana Cosmina @ Spring I/O Bridge

Spring I/O Bridge (online conference) - 15 May 2020 Slides: http://iuliana-cosmina.com/spring_io_v_0_6.ppsx

Watch
Logging in Spring Boot with the Elastic Stack - Philipp Krenn @ Spring I/O Bridge

Spring I/O Bridge (online conference) - 15 May 2020 Slides: https://xeraa.net/talks/logging-in-spring-boot-with-the-elastic-stack/ GitHub repo: https://github.com/xeraa/gs-securing-web/tree/event Let’s look at the good parts of logging: - How can you bring logging to production quickly? - How does this work with Spring Boot in as a practical example? - Do you want to add tracing and make the most of the combination? - How do you manage the data that you are collecting?

Watch
Chaos Monkey for Spring Boot - John Fletcher & Manuel Wessner @ Spring I/O Bridge

Spring I/O Bridge (online conference) - 15 May 2020 Everything you want to know about the useful and popular chaos engineering tool Chaos Monkey for Spring Boot (CMSB) from two of its maintainers. Featuring: - How to easily get started with your first Chaos Experiments. - How to integrate CMSB with automation tools like Chaos Toolkit in order to run tests in your build chain. - What to consider when running chaos experiments on a reactive application. - An overview of the history, the changes in the latest version, and the roadmap. - Who should get involved in the project, and how. The talk will primarily consist of live coding.

Watch
RSocket - Future Reactive Application Protocol by Oleh Dokuka @ Spring I/O Bridge

Spring I/O Bridge (online conference) - 15 May 2020 Slides: https://www.icloud.com/keynote/0hQ06PXKGNOTbCe5L6y_JRYag#RSocket_-_the_future_reactive_protocol_(SMALL_TALK) GitHub repo: https://github.com/OlegDokuka/rsocket-crosslanguage-example Are you making microservices/cloud-native applications? Are you frustrated by slow REST? Tired of unreliable gRPC? Do you need faster client-server communication, but don’t want to invent your own WebSocket-protocol? RSocket is a new application-level protocol capable of reactive streaming that can be used to simplify the way enterprises build and operate cloud-native applications. It enables traditional enterprise developers to build sophisticated, cloud-native, distributed applications. RSocket is transport agnostic and can be used on top of any transport protocol like TCP/Aeron or even on top of HTTP/2 or WebSocket. RSocket has various interaction models so it can satisfy the needs of today applications. The protocol is agnostic when it comes to programming languages, message formats, and API architecture. Any developer can use RSocket to meet all business requirements. RSocket simplifies life for any startup or enterprise, whether it is used in a protocol implementation like Java, C#, C++, JavaScript or deployed in an RPC framework. In this presentation, we are going to cover all these cases and concepts and answer why, when and how you can start using RSocket today and how high traffic giants like Facebook, Netflix and others have adopted RSocket.

Watch
Extending Spring Boot for Cloud Deployments by Ray Tsang & Eddú Meléndez @ Spring I/O Bridge

Spring I/O Bridge (online conference) - 15 May 2020 GitHub repo: https://github.com/saturnism/spring-boot-starter-example Spring Boot and Spring Cloud offers unprecedented abstraction layer that offers solutions to all sorts of common concerns - security, data access, messaging, configuration, caching, distributed tracing, and more. All of these layers also provide extension points to integrate with different underlying implementations. These extension points are crucial when developing cloud native application. For example, when developing a cloud native application that needs to use cloud provider’s messaging system, you may be able to avoid using implementation-specific APIs, instead, use a higher level abstraction such as Spring Integration. In this talk, we’ll what these extensions points are, how to build an extension, and how we realize the benefits in the Spring Cloud GCP project.

Watch