You can find the GitHub repo for this lab here: https://github.com/JosePaumard/2025_JavaOne-DOP-Amber-lab
Data Oriented Programming is a programming model, that is being implemented in Java in a step by step approach. It allows you to organize your application differently than what Object Oriented Programming does. It uses several of the features added by the Amber project: sealed types, exhaustive switch expressions on types, records, and pattern matching. It is still a work in progress, as pattern matching is still being developped, but all the other elements are available as final features. This hands-on lab gives you a simple application as a starting point, developped following the Object Oriented Programming principles. You will then be guided step by step through the refactoring, following the principles of Data Oriented Programming. By the end of this workshop, you will gain a better understanding of Data Oriented Programming, and how and where you can apply its principles in your application.