SESSION + Live Q&A
Real World Java 9
The feature we always hear about whenever Java 9 is in the news is Jigsaw (or modularity). But this doesn't scratch the same developer itch that Java 8's lambdas and streams did, and we're left with a vague sensation that the next version might not be that interesting.
Java 9 actually has a lot of great additions and changes to make development a bit nicer. These features can't be lumped under an umbrella term like Java 8's lambdas and streams, the changes are scattered throughout the APIs and language features that we regularly use.
In this presentation, Trisha shows via live coding:
- How we can use the new Flow API to utilise Reactive Programming
- How the improvements to the Streams API make it easier to control real-time streaming data
- How to the Collections convenience methods simplify code
Along the way, we'll bump into other Java 9 features, including some of the additions to interfaces and changes to deprecation. We’ll see that once you start using Java 9, you can't go back to before.
Speaker
Trisha Gee
Java Champion, Engineer and Evangelist
Trisha has developed Java applications for a range of industries, including finance, manufacturing, software and non-profit, for companies of all sizes. She has expertise in Java high performance systems, is passionate about enabling developer productivity, and dabbles with Open Source...
Read moreFind Trisha Gee at:
From the same track
From Concurrent to Parallel
As core counts continue to increase, how we exploit hardware parallelism in practice shifts from concurrency — using more cores to handle more user requests — to parallelism — using more cores to solve data-intensive problems faster. This talk will explore the different goals, tools, and...
Brian Goetz
Java Language Architect @Oracle
Thinking Strategically About IoT
Cool? Useful? Disruptor? All of the above? IoT is having an impact on more and more industries. As the cost of instrumenting things and collecting data drops, the possibilities for what we can control and the kind of insights we can gather increase. Not only is IoT hardware cheaper and more...
Holly Cummins
Senior Software Engineer @IBM, Committer on Apache Aries
Using FlameGraphs To Illuminate The JVM
FlameGraphs offer us a new way to visualize execution profiles, combined with Linux system profiler perf and the recently added -XX:+PreserveFramePointer option in JDK 8u60 we now have for the first time a way to capture a comprehensive profile for the OS, JVM and your Java code. In this...
Nitsan Wakart
Performance Consultant and OSS Contributor
Event Sourcing on the JVM
Have you ever wondered about event sourced systems and how they work? How to structure things around a transaction log yet still keep the system stable over time when change arises. In this talk we will look at Event Sourcing as a concept as well as specific JVM based implementations that are...
Greg Young
Created the term CQRS