SlideShare a Scribd company logo
1
Building Realtime Data
Apps with Speedment
TCF IT Professional Conference
March 17, 2017
Michael P. Redlich
@mpredli
about.me/mpredli/
Who’s Mike?
• BS in CS from
• “Petrochemical Research Organization”
• Java Queue News Editor, InfoQ
• Ai-Logix, Inc. (now AudioCodes)
• Amateur Computer Group of New Jersey
2
Objectives
• What is Speedment?
• Why Speedment?
• Database Support
• Get Started Building an Application
• Live Demo (yea!)
• Speedment Resources
3
What is Speedment
(1)?
“Speedment accelerates your development speed
and makes database programming so easy and fun.
When you use Speedment Open Source for
database querying, you do not have to learn a new
API or use complex ORMs. Everything is standard
Java 8 and works out of the box.”
Speedment Web Site, http://www.speedment.org/
4
What is Speedment
(2)?
• First introduced in June 2015
• A portmanteau of “speed” and
“development”
• Abstracts the process of:
• database connectivity
• database operations
5
Speedment Integration
6
“Hello, Java Users Group!”
Speedment 3.0.5
• Codename:“Forest”
• Latest features include:
• declarative Java 8 stream API for
databases operations
• improved user interface
7
Why Speedment?
• Full Java 8 support
• lamdas and streams
• Easy query with Smart Streams
• no need for coding SQL
• No NULL pointer exceptions
8
Speedment Open
Source
• Speedment Open Source Database
Support:
• MySQL
• PostgreSQL
• MariaDB
9
Speedment Enterprise
• Speedment Enterprise Database Support
includes Open Source plus:
• Oracle
• DB2
• AS400
• SQL Server
10
Let’s Get Started…
11
Example Database
12
“Hello, Java Users Group!”
Getting Started
$ mvn archetype:generate
-DgroupId=org.redlich.publications
-DartifactId=publications
-DarchetypeArtifactId=speedment-archtype-mysql
-DarchetypeGroupId=com.speedment.archetypes
-DinteractiveMode=false
-DarchetypeVersion=3.0.5
&& cd publications && mvn speedment:tool
13
generates a new project
project package
project root
invoke the Speedment tool
the latest version of Speedment
specify desired database
Speedment Tool (1)
14
“Hello, Java Users Group!”
specify desired database
subpackage (user defined)
database name
click…
Speedment Tool (2)
15
“Hello, Java Users Group!”
click…
Let’s Build That App…
16
17
/*
* initial setup
*/
protected final PublicationsApplication app;
protected final AuthorsManager authorsManager;
protected final PublicationsManager
publicationsManager;
app = new PublicationsApplicationBuilder();
authorsManager =
app.getOrThrow(AuthorsManager.class);
publicationsManager =
app.getOrThrow(PublicationsManager.class);
main app
manager representing each database table
18
/*
* smart streaming
*/
publicationsManager.stream()
.forEach(System.out::println);
publicationsManager.stream()
.filter(Publications.TITLE.startsWith(“”);
long count = publicationsManager.stream()
.count()
Optional<Authors> redlich = authorsManager
.stream()
.filter(Authors.LAST_NAME.equal(“Redlich”))
.findAny();
Partial UML Diagram
19
“Hello, Java Users Group!”
Demo Time…
20
21
Speedment Resources
•speedment.org
•javadoc.io/doc/com.speedment/
runtime-deploy/3.0.5
•minborgsjavapot.blogspot.com
•https://www.infoq.com/news/
2016/12/speedment-releases-
version-3 Per-Åke Minborg, CTO at Speedment
Upcoming Events (1)
• March 17-18, 2017
•tcf-nj.org
• April 18-19, 2017
•phillyemergingtech.com
22
Acknowledgements
• Speedment, Inc.
• Per-Åke Minborg, CTO at Speedment
23
24
Thanks!
mike@redlich.net
@mpredli
redlich.net
slideshare.net/mpredli01
github.com/mpredli01

More Related Content

PDF
NoSQL Now! Webinar Series: Innovations in NoSQL Query Languages
PPTX
SSIS Monitoring Deep Dive
PPTX
SQL Server & SQL Azure Temporal Tables - V2
PDF
Transitioning From SQL Server to MySQL - Presentation from Percona Live 2016
PDF
End to-end W3C - JS.everywhere(2012) Europe
PDF
Scaling the Content Repository with Elasticsearch
PPTX
Geek Sync | How to Be the DBA When You Don't Have a DBA - Eric Cobb | IDERA
NoSQL Now! Webinar Series: Innovations in NoSQL Query Languages
SSIS Monitoring Deep Dive
SQL Server & SQL Azure Temporal Tables - V2
Transitioning From SQL Server to MySQL - Presentation from Percona Live 2016
End to-end W3C - JS.everywhere(2012) Europe
Scaling the Content Repository with Elasticsearch
Geek Sync | How to Be the DBA When You Don't Have a DBA - Eric Cobb | IDERA

What's hot (19)

PDF
Open11 maria db the new m in lamp
PPTX
Azure ML: from basic to integration with custom applications
PDF
From SQL to MongoDB
PPTX
Polyglot Persistence Utilizing Open Source Databases as a Swiss Pocket Knife
PDF
WordPress at Scale Webinar
PPTX
Market Trends in Microsoft Azure
PDF
Windows azure sql_database_security_isug012013
PDF
Hedis - GET HBase via Redis
PDF
Sql data base
PPTX
Agile Data Warehousing
PDF
Apache Spark Introduction
PDF
Experiences testing dev versions of MySQL and why it is good for you
PDF
Architecture and Design MySQL powered applications by Peter Zaitsev Meetup Sa...
PPTX
Geek Sync | Data Integrity Demystified - Deborah Melkin | IDERA
PPTX
Drupal for programmers
PPTX
SenchaCon 2016 - How to Auto Generate a Back-end in Minutes
PDF
Azure document db
PDF
https://docs.google.com/presentation/d/1DcL4zK6i3HZRDD4xTGX1VpSOwyu2xBeWLT6a_...
PPTX
Usability of MySQL
Open11 maria db the new m in lamp
Azure ML: from basic to integration with custom applications
From SQL to MongoDB
Polyglot Persistence Utilizing Open Source Databases as a Swiss Pocket Knife
WordPress at Scale Webinar
Market Trends in Microsoft Azure
Windows azure sql_database_security_isug012013
Hedis - GET HBase via Redis
Sql data base
Agile Data Warehousing
Apache Spark Introduction
Experiences testing dev versions of MySQL and why it is good for you
Architecture and Design MySQL powered applications by Peter Zaitsev Meetup Sa...
Geek Sync | Data Integrity Demystified - Deborah Melkin | IDERA
Drupal for programmers
SenchaCon 2016 - How to Auto Generate a Back-end in Minutes
Azure document db
https://docs.google.com/presentation/d/1DcL4zK6i3HZRDD4xTGX1VpSOwyu2xBeWLT6a_...
Usability of MySQL
Ad

Viewers also liked (12)

PDF
Getting Started with Meteor (TCF ITPC 2014)
PDF
Getting Started with Meteor
PDF
Selling your House Winter 2017
DOCX
Curriculum Vitae USA Nig
PPTX
Global Mental Health: the importance of contextual sensitivity and appropriat...
PPTX
The Importance of Research and Scholarship in the Promotion and Tenure Process
PPTX
Normes et qualite pour l’amelioration de la competitivite des pme locales
PPTX
Engage or Bust! 2015 - David Halpern - The Nudge Unit
PDF
Building Realtime Web Apps with Angular and Meteor
PPSX
Presentation On Performance Management & Appraisal of The Course Human Resour...
DOC
3. el ejercicio y deporte en ninos y adolescentes (1)
PPTX
Peinados p&amp;m para ti
Getting Started with Meteor (TCF ITPC 2014)
Getting Started with Meteor
Selling your House Winter 2017
Curriculum Vitae USA Nig
Global Mental Health: the importance of contextual sensitivity and appropriat...
The Importance of Research and Scholarship in the Promotion and Tenure Process
Normes et qualite pour l’amelioration de la competitivite des pme locales
Engage or Bust! 2015 - David Halpern - The Nudge Unit
Building Realtime Web Apps with Angular and Meteor
Presentation On Performance Management & Appraisal of The Course Human Resour...
3. el ejercicio y deporte en ninos y adolescentes (1)
Peinados p&amp;m para ti
Ad

Similar to Building Realtime Access Data Apps with Speedment (TCF ITPC 2017) (20)

PDF
Building scalbale cloud native apps with .NET 8
PPTX
Data infrastructure architecture for medium size organization: tips for colle...
PDF
SQL Operations Studio - new multi-platform tool for SQL Server database devel...
PPT
Database continuous integration, unit test and functional test
PDF
Myth Busters II: BI Tools and Data Virtualization are Interchangeable
PPTX
.NET per la Data Science e oltre
PPT
Plantilla oracle
PPTX
Modern ETL: Azure Data Factory, Data Lake, and SQL Database
PPT
Rajnish singh(presentation on oracle )
PDF
Demi Ben-Ari - Monitoring Big Data Systems Done "The Simple Way" - Codemotion...
PDF
Monitoring Big Data Systems Done "The Simple Way" - Codemotion Milan 2017 - D...
PPT
kjdiakdnfdifjadsjkjklljlldasgjdjdljgfldjgldjgldjgl.ppt
PPT
ow.ppt
PDF
QuerySurge Slide Deck for Big Data Testing Webinar
PPTX
Maintainable Machine Learning Products
PPTX
SSDT unleashed
PPTX
PostgreSQL as a Strategic Tool
 
Building scalbale cloud native apps with .NET 8
Data infrastructure architecture for medium size organization: tips for colle...
SQL Operations Studio - new multi-platform tool for SQL Server database devel...
Database continuous integration, unit test and functional test
Myth Busters II: BI Tools and Data Virtualization are Interchangeable
.NET per la Data Science e oltre
Plantilla oracle
Modern ETL: Azure Data Factory, Data Lake, and SQL Database
Rajnish singh(presentation on oracle )
Demi Ben-Ari - Monitoring Big Data Systems Done "The Simple Way" - Codemotion...
Monitoring Big Data Systems Done "The Simple Way" - Codemotion Milan 2017 - D...
kjdiakdnfdifjadsjkjklljlldasgjdjdljgfldjgldjgldjgl.ppt
ow.ppt
QuerySurge Slide Deck for Big Data Testing Webinar
Maintainable Machine Learning Products
SSDT unleashed
PostgreSQL as a Strategic Tool
 

More from Michael Redlich (19)

PDF
Getting Started with GitHub
PDF
Building Microservices with Micronaut: A Full-Stack JVM-Based Framework
PDF
Building Microservices with Helidon: Oracle's New Java Microservices Framework
PDF
Introduction to Object Oriented Programming & Design Principles
PDF
Getting Started with C++
PDF
C++ Advanced Features
PDF
Java Advanced Features
PDF
Introduction to Object Oriented Programming &amp; Design Principles
PDF
Getting Started with Java
PDF
Getting started with C++
PDF
C++ Advanced Features
PDF
Building Realtime Access to Data Apps with jOOQ
PDF
Java Advanced Features (TCF 2014)
PDF
Introduction to Object-Oriented Programming & Design Principles (TCF 2014)
PDF
Getting Started with Java (TCF 2014)
PDF
Getting Started with C++ (TCF 2014)
PDF
C++ Advanced Features (TCF 2014)
PDF
Getting Started with MongoDB (TCF ITPC 2014)
PDF
Getting Started with MongoDB
Getting Started with GitHub
Building Microservices with Micronaut: A Full-Stack JVM-Based Framework
Building Microservices with Helidon: Oracle's New Java Microservices Framework
Introduction to Object Oriented Programming & Design Principles
Getting Started with C++
C++ Advanced Features
Java Advanced Features
Introduction to Object Oriented Programming &amp; Design Principles
Getting Started with Java
Getting started with C++
C++ Advanced Features
Building Realtime Access to Data Apps with jOOQ
Java Advanced Features (TCF 2014)
Introduction to Object-Oriented Programming & Design Principles (TCF 2014)
Getting Started with Java (TCF 2014)
Getting Started with C++ (TCF 2014)
C++ Advanced Features (TCF 2014)
Getting Started with MongoDB (TCF ITPC 2014)
Getting Started with MongoDB

Recently uploaded (20)

PPTX
assetexplorer- product-overview - presentation
PDF
iTop VPN 6.5.0 Crack + License Key 2025 (Premium Version)
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Download FL Studio Crack Latest version 2025 ?
PDF
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Designing Intelligence for the Shop Floor.pdf
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PDF
Salesforce Agentforce AI Implementation.pdf
PPTX
Oracle Fusion HCM Cloud Demo for Beginners
PDF
medical staffing services at VALiNTRY
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Cost to Outsource Software Development in 2025
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
PPTX
Computer Software and OS of computer science of grade 11.pptx
PPTX
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
PPTX
Reimagine Home Health with the Power of Agentic AI​
assetexplorer- product-overview - presentation
iTop VPN 6.5.0 Crack + License Key 2025 (Premium Version)
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Download FL Studio Crack Latest version 2025 ?
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
Operating system designcfffgfgggggggvggggggggg
Designing Intelligence for the Shop Floor.pdf
Design an Analysis of Algorithms I-SECS-1021-03
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
Salesforce Agentforce AI Implementation.pdf
Oracle Fusion HCM Cloud Demo for Beginners
medical staffing services at VALiNTRY
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Cost to Outsource Software Development in 2025
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
Computer Software and OS of computer science of grade 11.pptx
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
Reimagine Home Health with the Power of Agentic AI​

Building Realtime Access Data Apps with Speedment (TCF ITPC 2017)