SlideShare a Scribd company logo
JavaOne 2014 Java EE 8 Booth Slides
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
Java 
EE 
8
Safe 
Harbor 
Statement 
The 
following 
is 
intended 
to 
outline 
our 
general 
product 
direcJon. 
It 
is 
intended 
for 
informaJon 
purposes 
only, 
and 
may 
not 
be 
incorporated 
into 
any 
contract. 
It 
is 
not 
a 
commitment 
to 
deliver 
any 
material, 
code, 
or 
funcJonality, 
and 
should 
not 
be 
relied 
upon 
in 
making 
purchasing 
decisions. 
The 
development, 
release, 
and 
Jming 
of 
any 
features 
or 
funcJonality 
described 
for 
Oracle’s 
products 
remains 
at 
the 
sole 
discreJon 
of 
Oracle. 
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
3
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
Java 
EE 
8 
Themes 
• HTML5 
/ 
Web 
Tier 
Enhancements 
• Ease 
of 
Development 
/ 
CDI 
alignment 
• Infrastructure 
for 
running 
in 
the 
Cloud 
• Driven 
by 
Community 
Feedback 
4 
JSR 
366
Community 
PrioriJzed 
Features 
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
5
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
CDI 
2.0 
• Events 
– Asynchronous 
events 
– Event 
ordering 
– Event 
Range 
(war, 
ear, 
server, 
cluster) 
• Interceptor 
/ 
Decorator 
(AOP) 
– Support 
AOP 
on 
custom 
or 
produced 
bean 
– Support 
AOP 
on 
inner 
calls 
(AOP 
enable 
when 
a 
method 
is 
called 
in 
same 
class) 
6 
JSR 
365 
• SPI 
enhancement 
– Beer 
access 
to 
CDI 
meta 
data 
– Contexts 
enhancement 
for 
3rd 
party 
Spec
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
CDI 
2.0 
(cont.) 
• Parts 
(“sub-­‐spec 
with 
sub-­‐impl.”) 
– CDI 
Light 
(simple 
IoC 
soluJon) 
– Event 
• Java 
SE 
support 
– Boot 
CDI 
from 
Java 
SE 
– Add 
SPI 
to 
easily 
integrate 
CDI 
in 
custom 
stack 
(i.e 
plug 
transacJon 
manager) 
7 
JSR 
365
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
JSON-­‐B 
1.0 
• ConverJng 
Java 
objects 
to 
& 
from 
JSON 
• Supports 
for 
different 
providers 
– Leverages 
mature 
JSON 
Binding 
frameworks 
– With 
a 
standard 
API 
• Mapping 
– Default 
+ 
customized 
8 
JSR 
367
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
JMS 
2.1 
• New 
API 
to 
receive 
messages 
asynchronously 
– In 
Java 
SE, 
remove 
need 
to 
implement 
MessageListener 
– In 
Java 
EE, 
a 
simpler 
and 
more 
flexible 
alternaJve 
to 
JMS 
MDBs 
• Simpler, 
JMS-­‐specific 
annotaJons 
that 
allow 
any 
managed 
bean 
to 
listen 
for 
JMS 
messages 
• No 
need 
to 
implement 
MessageListener 
• No 
need 
to 
be 
restricted 
to 
MDB 
lifecycle 
9 
JSR 
368 
@RequestScoped 
public 
class 
MyListenerComponent 
{ 
@JMSListener(destinationLookup="myQueue") 
@Transactional 
public 
void 
myCallback(Message 
message) 
{ 
... 
... 
} 
}
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
JMS 
2.1 
(cont.) 
• Completes 
ease-­‐of-­‐use 
improvements 
started 
in 
JMS 
2.0 
• Improved 
portability 
of 
JMS 
providers 
between 
ApplicaJon 
Servers 
• Further 
clarify 
behavior 
of 
JMS 
in 
a 
Java 
EE 
applicaJons 
• CorrecJons 
and 
improvements 
to 
new 
JMS 
2.0 
features 
• Extend 
specificaJon 
to 
cover 
redelivery 
loops 
and 
dead 
message 
queues 
• Other 
features 
proposed 
by 
the 
community 
and 
the 
Experts 
Group 
10 
JSR 
368
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
Servlet 
4.0 
• Request/response 
mulJplexing 
– Servlet 
Request 
as 
HTTP/2 
message 
• Stream 
prioriJzaJon 
– Add 
stream 
priority 
to 
HpServletRequest 
• Server 
push 
• Binary 
framing 
– Hidden 
from 
API 
• Upgrade 
from 
HTTP 
1.1 
11 
JSR 
369
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
Servlet 
4.0 
• Servlet 
4.0 
is 
important 
because 
HTTP 
2.0 
is 
important 
• HTTP 
2.0 
compliance 
– Server 
Push 
– Stream 
Priority 
– Upgrade 
from 
HTTP 
1.1 
• Compliance 
with 
latest 
HTTP 
1.1 
RFCs 
7230 
– 
7235 
– IETF 
PRECIS 
framework 
for 
secure 
Unicode 
– Numerous 
small 
compliance 
issues 
12 
JSR 
369
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
JAX-­‐RS 
2.1 
• ConJnued 
evoluJon 
of 
JAX-­‐RS 
API 
– All 
simple 
problems 
have 
already 
been 
solved… 
• Performance 
– ReacJve 
Programming 
Model 
– Java 
SE 
8 
Streams 
– Non-­‐blocking 
I/O 
13 
JSR 
370
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
JAX-­‐RS 
2.1 
(cont.) 
• Java 
EE 
Alignment 
– CDI 
Alignment 
– DeclaraJve 
Security 
Model 
– MVC 
1.0 
IntegraJon 
– JSONB 
1.0 
IntegraJon 
• Filling 
the 
Gaps 
– Server-­‐Sent 
Events 
– Improved 
Hypermedia 
Support 
– CORS 
14 
JSR 
370
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
MVC 
1.0 
• AcJon-­‐based 
Model-­‐View-­‐Controller 
architecture 
• Glues 
together 
key 
Java 
EE 
technologies: 
– Model 
• CDI, 
Bean 
ValidaJon, 
JPA 
– View 
• Facelets, 
JSP 
– Controller 
• Invent 
new 
technology? 
• Leverage 
exisJng 
technologies 
such 
as 
JAX-­‐RS, 
... 
? 
JSR 
371 
15
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
JSF 
2.3 
JSR 
372 
• SpecificaJon 
clarificaJons 
• CDI 
alignment 
– Ease 
of 
use 
e.g. 
@Inject 
– Removal 
of 
old 
injecJon 
provider 
• Performance 
enhancements 
– Caching 
EL 
expressions 
were 
possible 
• Use 
Java 
SE 
8 
where 
possible 
16
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
JSF 
2.3 
(cont.) 
JSR 
372 
• MVC 
alignment 
• Shepherd 
EG 
driven 
features 
into 
spec 
– JSON 
ajax 
component 
rendering 
– State 
saving 
enhancements 
– Stateless 
enhancements 
– GET 
enhancements 
– … 
17
Java 
EE 
Management 
API 
2.0 
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
• Update 
of 
JSR 
77 
• Define 
RESTful 
API 
for 
Java 
EE 
management 
– Incorporate 
all 
exisJng 
JSR 
77 
managed 
beans 
– Define 
event 
model 
using 
Server 
Sent 
Events 
– ConsideraJon 
will 
be 
given 
to 
mark 
the 
exisJng 
MEJB 
API 
as 
Proposed 
OpJonal 
• Define 
RESTful 
API 
for 
applicaJon 
deployment 
– Focus 
on 
simple 
cases 
first 
– Deployment 
support 
integrated 
to 
same 
API 
with 
other 
Java 
EE 
management 
JSR 
TBD 
18
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
JSON-­‐P 
1.1 
• Support 
for 
JSON 
standards 
– JSON 
Pointer 
(RFC 
6901) 
and 
JSON 
Patch 
(RFC 
6902) 
• Support 
for 
ediJng/transformaJon 
on 
JsonArray 
and 
JsonObject 
– Add 
API 
for 
the 
current 
builders 
• Support 
JSON 
query 
in 
JavaSE 
8 
– Add 
helper 
classes 
and 
methods 
to 
construct 
Collectors 
• Support 
for 
bing 
JSON 
data 
– Add 
API 
in 
JsonParser 
to 
construct 
JsonValues 
– Generate 
Java 
streams 
(high 
and 
low 
level) 
JSR 
TBD 
19
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
Java 
EE 
Security 
1.0 
JSR 
TBD 
• Candidate 
Areas 
to 
Enhance 
Portability, 
Flexibility, 
Ease-­‐of-­‐Use 
– Password 
Aliasing 
– User 
Management 
– Role 
Mapping 
– AuthenJcaJon 
– REST 
AuthenJcaJon 
– AuthorizaJon 
20
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
Java 
EE 
Security 
1.0 
JSR 
TBD 
• AuthorizaIon 
via 
CDI 
Interceptors 
@IsAuthorized("hasRoles('Manager') 
&& 
schedule.officeHrs") 
void 
transferFunds() 
@IsAuthorized("hasRoles('Manager') 
&& 
hasAttribute('directReports', 
employee.id)") 
double 
getSalary(long 
employeeId); 
@IsAuthorized(ruleSourceName="java:app/payrollAuthRules", 
rule="report") 
void 
displayReport(); 
21
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
Java 
EE 
8 
JSRs 
• Java 
EE 
8 
Platorm 
• CDI 
2.0 
• JSON 
Binding 
1.0 
• JAX-­‐RS 
2.1 
• MVC 
1.0 
• Java 
Servlet 
4.0 
• JSF 
2.3 
• JMS 
2.1 
22 
As 
of 
today 
Coming 
soon… 
• JSON-­‐P 
1.1 
• Java 
EE 
Security 
1.0 
• Java 
EE 
Management 
2.0 
• JCache 
1.1 
• And 
more 
to 
follow…
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
And 
more 
to 
follow… 
• EL 
• Concurrency 
UJliJes 
• Connector 
Architecture 
• WebSocket 
• Interceptors 
• JPA 
23 
• EJB 
• JTA 
• Batch 
• JavaMail 
• …
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
Transparency 
• Our 
Java 
EE 
8 
JSRs 
run 
in 
the 
open 
on 
java.net 
– hp://javaee-­‐spec.java.net 
– One 
project 
per 
JSR 
– 
jax-­‐rs-­‐spec, 
mvc-­‐spec, 
servlet-­‐spec,... 
• Publically 
viewable 
Expert 
Group 
mail 
archive 
– Users 
observer 
lists 
gets 
all 
copies 
• Publicly 
accessible 
issue 
tracker 
/ 
JIRA 
• Publicly 
accessible 
download 
area 
• … 
24 
Commitment 
to 
JCP 
transparent 
processes
Proposed Final Draft 
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
25 
Java 
EE 
Roadmap 
Public Review Drafts 
JSR Submissions 
Java EE 8 Final 
Early Draft Specifications 
Java EE 8 Planning 
06/2014 01/2015 01/2015 01/2016 09/2017
Java 
EE 
8 
New 
JSRs 
New 
OpportuniJes 
Get Involved! 
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
ConJnue 
to 
parJcipate 
26 
Java 
EE 
7 
14 
adopted 
JSRs 
19 
Java 
User 
Groups 
Thank You! 
ParDcipate 
with 
us! 
hIp://glassfish.org/contribute
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
GlassFish 
Server
GlassFish 
Server 
Open 
Source 
EdiJon 
4.1 
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
28 
Updated 
PlaSorm 
Support 
• 
Java 
8 
• 
CDI 
1.2 
• 
WebSocket 
1.1 
Jersey 
(JAX-­‐RS) 
• 
New 
diagnosJcs 
API 
• 
SSE 
client 
reconnect 
Tyrus 
(WebSocket) 
• 
Session 
limits 
• 
Proxy 
support 
• 
Client 
reconnect 
Stability 
and 
Quality 
• 
Feature 
enhancements 
• 
1000+ 
bugs 
fixes 
And 
More 
… 
• 
Updated 
Java 
EE 
7 
SDK 
• 
JMS 
over 
WebSockets
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
Meet 
the 
Experts
Meet 
the 
Experts 
– 
Monday 
Sept. 
29 
Schedule 
Expert(s) 
Technology 
10-­‐11 
AM 
Bruno 
Borges 
Adopt-­‐a-­‐JSR 
for 
Java 
EE 
8, 
any 
Java 
EE 
8 
technology 
11 
– 
12 
PM 
MarJn 
Grebac 
JSON-­‐B 
12 
-­‐ 
1 
PM 
Kin-­‐man 
Chung 
JSON-­‐P 
and 
EL 
1 
-­‐ 
2 
PM 
Marek 
Potociar 
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
Pavel 
Bucek 
JAX-­‐RS 
WebSocket 
(JSR 
356) 
2 
-­‐ 
3 
PM 
Linda 
DeMichiel 
Java 
EE 
8 
4 
-­‐ 
5 
PM 
Reza 
Rahman 
Adopt-­‐a-­‐JSR 
for 
Java 
EE 
8, 
any 
Java 
EE 
8 
technology 
30
Meet 
the 
Experts 
– 
Tuesday 
Sept. 
30 
Schedule 
Expert(s) 
Technology 
10-­‐11 
AM 
Heather 
VanCura 
JCP/JCP.Next 
(JSR 
364), 
Adopt-­‐a-­‐JSR 
11 
– 
12 
PM 
MarJn 
Mares 
Java 
EE 
Management 
12 
-­‐ 
1 
PM 
Nigel 
Deakin 
JMS 
1 
-­‐ 
2 
PM 
Reza 
Rahman 
Adopt-­‐a-­‐JSR 
for 
Java 
EE 
8, 
any 
Java 
EE 
8 
technology 
2 
-­‐ 
3 
PM 
Ed 
Burns, 
Shing 
Wai 
Chan 
JSF 
2.3 
and 
Servlets 
4.0 
4 
-­‐ 
5 
PM 
Marek 
Potociar 
JAX-­‐RS 
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
31
Meet 
the 
Experts 
-­‐ 
Wednesday 
Oct. 
1 
Schedule 
Expert(s) 
Technology 
10-­‐11 
AM 
Antoine 
Sabot-­‐Durand 
CDI 
11 
– 
12 
PM 
Antoine 
Sabot-­‐Durand 
CDI 
12 
-­‐ 
1 
PM 
Brian 
Oliver 
Jcache 
1 
-­‐ 
2 
PM 
David 
Delabassee 
Adopt-­‐a-­‐JSR 
for 
Java 
EE 
8, 
any 
Java 
EE 
8 
technology 
2 
-­‐ 
3 
PM 
Manfred 
Riem 
MVC 
1.0 
and 
JSF 
2.3 
Copyright 
© 
2014, 
Oracle 
and/or 
its 
affiliates. 
All 
rights 
reserved. 
| 
32

More Related Content

What's hot (20)

Oracle WebLogic Server 12c: Seamless Oracle Database Integration (with NEC, O...
Oracle WebLogic Server 12c: Seamless Oracle Database Integration (with NEC, O...Oracle WebLogic Server 12c: Seamless Oracle Database Integration (with NEC, O...
Oracle WebLogic Server 12c: Seamless Oracle Database Integration (with NEC, O...
jeckels
 
Oracle ExaLogic Overview
Oracle ExaLogic OverviewOracle ExaLogic Overview
Oracle ExaLogic Overview
Peter Doolan
 
Java EE for the Cloud
Java EE for the CloudJava EE for the Cloud
Java EE for the Cloud
Dmitry Kornilov
 
WebLogic 12c - OMF Canberra June 2014
WebLogic 12c - OMF Canberra June 2014WebLogic 12c - OMF Canberra June 2014
WebLogic 12c - OMF Canberra June 2014
Joelith
 
Oracle WebLogic Server 12.2.1 Do More with Less
Oracle WebLogic Server 12.2.1 Do More with LessOracle WebLogic Server 12.2.1 Do More with Less
Oracle WebLogic Server 12.2.1 Do More with Less
Ed Burns
 
What You Should Know About WebLogic Server 12c (12.2.1.2) #oow2015 #otntour2...
What You Should Know About WebLogic Server 12c (12.2.1.2)  #oow2015 #otntour2...What You Should Know About WebLogic Server 12c (12.2.1.2)  #oow2015 #otntour2...
What You Should Know About WebLogic Server 12c (12.2.1.2) #oow2015 #otntour2...
Frank Munz
 
Modularization With Project Jigsaw in JDK 9
Modularization With Project Jigsaw in JDK 9Modularization With Project Jigsaw in JDK 9
Modularization With Project Jigsaw in JDK 9
Simon Ritter
 
Talk IT_ Oracle_정병선_110928
Talk IT_ Oracle_정병선_110928Talk IT_ Oracle_정병선_110928
Talk IT_ Oracle_정병선_110928
Cana Ko
 
Managing Oracle Solaris Systems with Puppet
Managing Oracle Solaris Systems with PuppetManaging Oracle Solaris Systems with Puppet
Managing Oracle Solaris Systems with Puppet
glynnfoster
 
Oracle Solaris Application-Centric Lifecycle and DevOps
Oracle Solaris Application-Centric Lifecycle and DevOpsOracle Solaris Application-Centric Lifecycle and DevOps
Oracle Solaris Application-Centric Lifecycle and DevOps
OTN Systems Hub
 
HTTP/2 comes to Java. What Servlet 4.0 means to you. DevNexus 2015
HTTP/2 comes to Java.  What Servlet 4.0 means to you. DevNexus 2015HTTP/2 comes to Java.  What Servlet 4.0 means to you. DevNexus 2015
HTTP/2 comes to Java. What Servlet 4.0 means to you. DevNexus 2015
Edward Burns
 
Presentation oracle exalogic elastic cloud
Presentation   oracle exalogic elastic cloudPresentation   oracle exalogic elastic cloud
Presentation oracle exalogic elastic cloud
solarisyougood
 
Oracle Keynote from JMagghreb 2014
Oracle Keynote from JMagghreb 2014Oracle Keynote from JMagghreb 2014
Oracle Keynote from JMagghreb 2014
Simon Ritter
 
JDK 9 Java Platform Module System
JDK 9 Java Platform Module SystemJDK 9 Java Platform Module System
JDK 9 Java Platform Module System
Wolfgang Weigend
 
Presentation exalogic elastic cloud
Presentation   exalogic elastic cloudPresentation   exalogic elastic cloud
Presentation exalogic elastic cloud
solarisyougood
 
MySQL User Camp: GTIDs
MySQL User Camp: GTIDsMySQL User Camp: GTIDs
MySQL User Camp: GTIDs
Shivji Kumar Jha
 
Java: Create The Future Keynote
Java: Create The Future KeynoteJava: Create The Future Keynote
Java: Create The Future Keynote
Simon Ritter
 
Oracle Exalogic Elastic Cloud - Revolutionizing Data Center Consolidation
Oracle Exalogic Elastic Cloud - Revolutionizing Data Center ConsolidationOracle Exalogic Elastic Cloud - Revolutionizing Data Center Consolidation
Oracle Exalogic Elastic Cloud - Revolutionizing Data Center Consolidation
Rex Wang
 
Have You Seen Java EE Lately?
Have You Seen Java EE Lately?Have You Seen Java EE Lately?
Have You Seen Java EE Lately?
Reza Rahman
 
WebSockets in Enterprise Applications
WebSockets in Enterprise ApplicationsWebSockets in Enterprise Applications
WebSockets in Enterprise Applications
Pavel Bucek
 
Oracle WebLogic Server 12c: Seamless Oracle Database Integration (with NEC, O...
Oracle WebLogic Server 12c: Seamless Oracle Database Integration (with NEC, O...Oracle WebLogic Server 12c: Seamless Oracle Database Integration (with NEC, O...
Oracle WebLogic Server 12c: Seamless Oracle Database Integration (with NEC, O...
jeckels
 
Oracle ExaLogic Overview
Oracle ExaLogic OverviewOracle ExaLogic Overview
Oracle ExaLogic Overview
Peter Doolan
 
WebLogic 12c - OMF Canberra June 2014
WebLogic 12c - OMF Canberra June 2014WebLogic 12c - OMF Canberra June 2014
WebLogic 12c - OMF Canberra June 2014
Joelith
 
Oracle WebLogic Server 12.2.1 Do More with Less
Oracle WebLogic Server 12.2.1 Do More with LessOracle WebLogic Server 12.2.1 Do More with Less
Oracle WebLogic Server 12.2.1 Do More with Less
Ed Burns
 
What You Should Know About WebLogic Server 12c (12.2.1.2) #oow2015 #otntour2...
What You Should Know About WebLogic Server 12c (12.2.1.2)  #oow2015 #otntour2...What You Should Know About WebLogic Server 12c (12.2.1.2)  #oow2015 #otntour2...
What You Should Know About WebLogic Server 12c (12.2.1.2) #oow2015 #otntour2...
Frank Munz
 
Modularization With Project Jigsaw in JDK 9
Modularization With Project Jigsaw in JDK 9Modularization With Project Jigsaw in JDK 9
Modularization With Project Jigsaw in JDK 9
Simon Ritter
 
Talk IT_ Oracle_정병선_110928
Talk IT_ Oracle_정병선_110928Talk IT_ Oracle_정병선_110928
Talk IT_ Oracle_정병선_110928
Cana Ko
 
Managing Oracle Solaris Systems with Puppet
Managing Oracle Solaris Systems with PuppetManaging Oracle Solaris Systems with Puppet
Managing Oracle Solaris Systems with Puppet
glynnfoster
 
Oracle Solaris Application-Centric Lifecycle and DevOps
Oracle Solaris Application-Centric Lifecycle and DevOpsOracle Solaris Application-Centric Lifecycle and DevOps
Oracle Solaris Application-Centric Lifecycle and DevOps
OTN Systems Hub
 
HTTP/2 comes to Java. What Servlet 4.0 means to you. DevNexus 2015
HTTP/2 comes to Java.  What Servlet 4.0 means to you. DevNexus 2015HTTP/2 comes to Java.  What Servlet 4.0 means to you. DevNexus 2015
HTTP/2 comes to Java. What Servlet 4.0 means to you. DevNexus 2015
Edward Burns
 
Presentation oracle exalogic elastic cloud
Presentation   oracle exalogic elastic cloudPresentation   oracle exalogic elastic cloud
Presentation oracle exalogic elastic cloud
solarisyougood
 
Oracle Keynote from JMagghreb 2014
Oracle Keynote from JMagghreb 2014Oracle Keynote from JMagghreb 2014
Oracle Keynote from JMagghreb 2014
Simon Ritter
 
JDK 9 Java Platform Module System
JDK 9 Java Platform Module SystemJDK 9 Java Platform Module System
JDK 9 Java Platform Module System
Wolfgang Weigend
 
Presentation exalogic elastic cloud
Presentation   exalogic elastic cloudPresentation   exalogic elastic cloud
Presentation exalogic elastic cloud
solarisyougood
 
Java: Create The Future Keynote
Java: Create The Future KeynoteJava: Create The Future Keynote
Java: Create The Future Keynote
Simon Ritter
 
Oracle Exalogic Elastic Cloud - Revolutionizing Data Center Consolidation
Oracle Exalogic Elastic Cloud - Revolutionizing Data Center ConsolidationOracle Exalogic Elastic Cloud - Revolutionizing Data Center Consolidation
Oracle Exalogic Elastic Cloud - Revolutionizing Data Center Consolidation
Rex Wang
 
Have You Seen Java EE Lately?
Have You Seen Java EE Lately?Have You Seen Java EE Lately?
Have You Seen Java EE Lately?
Reza Rahman
 
WebSockets in Enterprise Applications
WebSockets in Enterprise ApplicationsWebSockets in Enterprise Applications
WebSockets in Enterprise Applications
Pavel Bucek
 

Similar to JavaOne 2014 Java EE 8 Booth Slides (20)

HTTP/2 Comes to Java - What Servlet 4.0 Means to You
HTTP/2 Comes to Java - What Servlet 4.0 Means to YouHTTP/2 Comes to Java - What Servlet 4.0 Means to You
HTTP/2 Comes to Java - What Servlet 4.0 Means to You
David Delabassee
 
Adopt-a-JSR for JSON Processing 1.1, JSR 374
Adopt-a-JSR for JSON Processing 1.1, JSR 374Adopt-a-JSR for JSON Processing 1.1, JSR 374
Adopt-a-JSR for JSON Processing 1.1, JSR 374
Heather VanCura
 
Servlet 4.0 Adopt-a-JSR 10 Minute Infodeck
Servlet 4.0 Adopt-a-JSR 10 Minute InfodeckServlet 4.0 Adopt-a-JSR 10 Minute Infodeck
Servlet 4.0 Adopt-a-JSR 10 Minute Infodeck
Edward Burns
 
AI Industrial Summit - SOFIA, BULGARIA - A High-Speed Data Ingestion Microser...
AI Industrial Summit - SOFIA, BULGARIA - A High-Speed Data Ingestion Microser...AI Industrial Summit - SOFIA, BULGARIA - A High-Speed Data Ingestion Microser...
AI Industrial Summit - SOFIA, BULGARIA - A High-Speed Data Ingestion Microser...
Juarez Junior
 
What's next for Java API for WebSocket (JSR 356)
What's next for Java API for WebSocket (JSR 356)What's next for Java API for WebSocket (JSR 356)
What's next for Java API for WebSocket (JSR 356)
Pavel Bucek
 
Java EE8 - by Kito Mann
Java EE8 - by Kito Mann Java EE8 - by Kito Mann
Java EE8 - by Kito Mann
Kile Niklawski
 
Deep Dive Hands-on in Java EE 6 - Oredev 2010
Deep Dive Hands-on in Java EE 6 - Oredev 2010Deep Dive Hands-on in Java EE 6 - Oredev 2010
Deep Dive Hands-on in Java EE 6 - Oredev 2010
Arun Gupta
 
Oracle JET overview
Oracle JET overviewOracle JET overview
Oracle JET overview
Steven Davelaar
 
Java EE7 in action
Java EE7 in actionJava EE7 in action
Java EE7 in action
Ankara JUG
 
Java EE 8: On the Horizon
Java EE 8:  On the HorizonJava EE 8:  On the Horizon
Java EE 8: On the Horizon
Josh Juneau
 
Andersen_Revolutionize Java DB AppDev with Reactive Streams and Virtual Threa...
Andersen_Revolutionize Java DB AppDev with Reactive Streams and Virtual Threa...Andersen_Revolutionize Java DB AppDev with Reactive Streams and Virtual Threa...
Andersen_Revolutionize Java DB AppDev with Reactive Streams and Virtual Threa...
Juarez Junior
 
Java Webinar #12: "Java Versions and Features: Since JDK 8 to 16"
Java Webinar #12: "Java Versions and Features: Since JDK 8 to 16"Java Webinar #12: "Java Versions and Features: Since JDK 8 to 16"
Java Webinar #12: "Java Versions and Features: Since JDK 8 to 16"
GlobalLogic Ukraine
 
MySQL & Oracle Linux Keynote at Open Source India 2014
MySQL & Oracle Linux Keynote at Open Source India 2014MySQL & Oracle Linux Keynote at Open Source India 2014
MySQL & Oracle Linux Keynote at Open Source India 2014
Sanjay Manwani
 
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
Andrew Morgan
 
OTN Developer Days - Java EE 6
OTN Developer Days - Java EE 6OTN Developer Days - Java EE 6
OTN Developer Days - Java EE 6
glassfish
 
Coherence RoadMap 2018
Coherence RoadMap 2018Coherence RoadMap 2018
Coherence RoadMap 2018
harvraja
 
Why jakarta ee matters (ConFoo 2021)
Why jakarta ee matters (ConFoo 2021)Why jakarta ee matters (ConFoo 2021)
Why jakarta ee matters (ConFoo 2021)
Ryan Cuprak
 
Java EE 8 Update
Java EE 8 UpdateJava EE 8 Update
Java EE 8 Update
Ryan Cuprak
 
The State of Java under Oracle at JCertif 2011
The State of Java under Oracle at JCertif 2011The State of Java under Oracle at JCertif 2011
The State of Java under Oracle at JCertif 2011
Arun Gupta
 
Introduction to java_ee
Introduction to java_eeIntroduction to java_ee
Introduction to java_ee
Yogesh Bindwal
 
HTTP/2 Comes to Java - What Servlet 4.0 Means to You
HTTP/2 Comes to Java - What Servlet 4.0 Means to YouHTTP/2 Comes to Java - What Servlet 4.0 Means to You
HTTP/2 Comes to Java - What Servlet 4.0 Means to You
David Delabassee
 
Adopt-a-JSR for JSON Processing 1.1, JSR 374
Adopt-a-JSR for JSON Processing 1.1, JSR 374Adopt-a-JSR for JSON Processing 1.1, JSR 374
Adopt-a-JSR for JSON Processing 1.1, JSR 374
Heather VanCura
 
Servlet 4.0 Adopt-a-JSR 10 Minute Infodeck
Servlet 4.0 Adopt-a-JSR 10 Minute InfodeckServlet 4.0 Adopt-a-JSR 10 Minute Infodeck
Servlet 4.0 Adopt-a-JSR 10 Minute Infodeck
Edward Burns
 
AI Industrial Summit - SOFIA, BULGARIA - A High-Speed Data Ingestion Microser...
AI Industrial Summit - SOFIA, BULGARIA - A High-Speed Data Ingestion Microser...AI Industrial Summit - SOFIA, BULGARIA - A High-Speed Data Ingestion Microser...
AI Industrial Summit - SOFIA, BULGARIA - A High-Speed Data Ingestion Microser...
Juarez Junior
 
What's next for Java API for WebSocket (JSR 356)
What's next for Java API for WebSocket (JSR 356)What's next for Java API for WebSocket (JSR 356)
What's next for Java API for WebSocket (JSR 356)
Pavel Bucek
 
Java EE8 - by Kito Mann
Java EE8 - by Kito Mann Java EE8 - by Kito Mann
Java EE8 - by Kito Mann
Kile Niklawski
 
Deep Dive Hands-on in Java EE 6 - Oredev 2010
Deep Dive Hands-on in Java EE 6 - Oredev 2010Deep Dive Hands-on in Java EE 6 - Oredev 2010
Deep Dive Hands-on in Java EE 6 - Oredev 2010
Arun Gupta
 
Java EE7 in action
Java EE7 in actionJava EE7 in action
Java EE7 in action
Ankara JUG
 
Java EE 8: On the Horizon
Java EE 8:  On the HorizonJava EE 8:  On the Horizon
Java EE 8: On the Horizon
Josh Juneau
 
Andersen_Revolutionize Java DB AppDev with Reactive Streams and Virtual Threa...
Andersen_Revolutionize Java DB AppDev with Reactive Streams and Virtual Threa...Andersen_Revolutionize Java DB AppDev with Reactive Streams and Virtual Threa...
Andersen_Revolutionize Java DB AppDev with Reactive Streams and Virtual Threa...
Juarez Junior
 
Java Webinar #12: "Java Versions and Features: Since JDK 8 to 16"
Java Webinar #12: "Java Versions and Features: Since JDK 8 to 16"Java Webinar #12: "Java Versions and Features: Since JDK 8 to 16"
Java Webinar #12: "Java Versions and Features: Since JDK 8 to 16"
GlobalLogic Ukraine
 
MySQL & Oracle Linux Keynote at Open Source India 2014
MySQL & Oracle Linux Keynote at Open Source India 2014MySQL & Oracle Linux Keynote at Open Source India 2014
MySQL & Oracle Linux Keynote at Open Source India 2014
Sanjay Manwani
 
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
Andrew Morgan
 
OTN Developer Days - Java EE 6
OTN Developer Days - Java EE 6OTN Developer Days - Java EE 6
OTN Developer Days - Java EE 6
glassfish
 
Coherence RoadMap 2018
Coherence RoadMap 2018Coherence RoadMap 2018
Coherence RoadMap 2018
harvraja
 
Why jakarta ee matters (ConFoo 2021)
Why jakarta ee matters (ConFoo 2021)Why jakarta ee matters (ConFoo 2021)
Why jakarta ee matters (ConFoo 2021)
Ryan Cuprak
 
Java EE 8 Update
Java EE 8 UpdateJava EE 8 Update
Java EE 8 Update
Ryan Cuprak
 
The State of Java under Oracle at JCertif 2011
The State of Java under Oracle at JCertif 2011The State of Java under Oracle at JCertif 2011
The State of Java under Oracle at JCertif 2011
Arun Gupta
 
Introduction to java_ee
Introduction to java_eeIntroduction to java_ee
Introduction to java_ee
Yogesh Bindwal
 

More from Edward Burns (20)

Java and AI with LangChain4j: Jakarta EE gets AI
Java and AI with LangChain4j: Jakarta EE gets AIJava and AI with LangChain4j: Jakarta EE gets AI
Java and AI with LangChain4j: Jakarta EE gets AI
Edward Burns
 
Java and AI with LangChain4j: Jakarta EE and AI
Java and AI with LangChain4j: Jakarta EE and AIJava and AI with LangChain4j: Jakarta EE and AI
Java and AI with LangChain4j: Jakarta EE and AI
Edward Burns
 
20250403-trusted-ai-favorite-ide-javaland.pdf
20250403-trusted-ai-favorite-ide-javaland.pdf20250403-trusted-ai-favorite-ide-javaland.pdf
20250403-trusted-ai-favorite-ide-javaland.pdf
Edward Burns
 
A survey of cloud readiness for Jakarta EE 11
A survey of cloud readiness for Jakarta EE 11A survey of cloud readiness for Jakarta EE 11
A survey of cloud readiness for Jakarta EE 11
Edward Burns
 
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLMJava and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Edward Burns
 
Java and AI with LangChain4j: Integrating Jakarta EE and LLMs
Java and AI with LangChain4j: Integrating Jakarta EE and LLMsJava and AI with LangChain4j: Integrating Jakarta EE and LLMs
Java and AI with LangChain4j: Integrating Jakarta EE and LLMs
Edward Burns
 
How to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDEHow to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDE
Edward Burns
 
How to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDEHow to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDE
Edward Burns
 
How to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDEHow to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDE
Edward Burns
 
How to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDEHow to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDE
Edward Burns
 
2024-09-10 Jacksonville JUG Java on Azure with AI
2024-09-10 Jacksonville JUG Java on Azure with AI2024-09-10 Jacksonville JUG Java on Azure with AI
2024-09-10 Jacksonville JUG Java on Azure with AI
Edward Burns
 
Deliver AI infused app innovation with Open Liberty on AKS
Deliver AI infused app innovation with Open Liberty on AKSDeliver AI infused app innovation with Open Liberty on AKS
Deliver AI infused app innovation with Open Liberty on AKS
Edward Burns
 
DevTalks Romania: Prepare for Jakarta EE 11
DevTalks Romania: Prepare for Jakarta EE 11DevTalks Romania: Prepare for Jakarta EE 11
DevTalks Romania: Prepare for Jakarta EE 11
Edward Burns
 
Developer Career Masterplan
Developer Career MasterplanDeveloper Career Masterplan
Developer Career Masterplan
Edward Burns
 
Jakarta EE 11 Status Update​
Jakarta EE 11 Status Update​Jakarta EE 11 Status Update​
Jakarta EE 11 Status Update​
Edward Burns
 
Sponsored Session: Please touch that dial!
Sponsored Session: Please touch that dial!Sponsored Session: Please touch that dial!
Sponsored Session: Please touch that dial!
Edward Burns
 
How modernizing enterprise applications gives you a competitive advantage
How modernizing enterprise applications gives you a competitive advantageHow modernizing enterprise applications gives you a competitive advantage
How modernizing enterprise applications gives you a competitive advantage
Edward Burns
 
Wie Azure Jakarta EE Nutzt
Wie Azure Jakarta EE NutztWie Azure Jakarta EE Nutzt
Wie Azure Jakarta EE Nutzt
Edward Burns
 
Practical lessons from customers performing digital transformation with Azure
Practical lessons from customers performing digital transformation with AzurePractical lessons from customers performing digital transformation with Azure
Practical lessons from customers performing digital transformation with Azure
Edward Burns
 
wls-azure-devnexus-2022.pdf
wls-azure-devnexus-2022.pdfwls-azure-devnexus-2022.pdf
wls-azure-devnexus-2022.pdf
Edward Burns
 
Java and AI with LangChain4j: Jakarta EE gets AI
Java and AI with LangChain4j: Jakarta EE gets AIJava and AI with LangChain4j: Jakarta EE gets AI
Java and AI with LangChain4j: Jakarta EE gets AI
Edward Burns
 
Java and AI with LangChain4j: Jakarta EE and AI
Java and AI with LangChain4j: Jakarta EE and AIJava and AI with LangChain4j: Jakarta EE and AI
Java and AI with LangChain4j: Jakarta EE and AI
Edward Burns
 
20250403-trusted-ai-favorite-ide-javaland.pdf
20250403-trusted-ai-favorite-ide-javaland.pdf20250403-trusted-ai-favorite-ide-javaland.pdf
20250403-trusted-ai-favorite-ide-javaland.pdf
Edward Burns
 
A survey of cloud readiness for Jakarta EE 11
A survey of cloud readiness for Jakarta EE 11A survey of cloud readiness for Jakarta EE 11
A survey of cloud readiness for Jakarta EE 11
Edward Burns
 
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLMJava and AI with LangChain4j: Jakarta EE and SmallRye LLM
Java and AI with LangChain4j: Jakarta EE and SmallRye LLM
Edward Burns
 
Java and AI with LangChain4j: Integrating Jakarta EE and LLMs
Java and AI with LangChain4j: Integrating Jakarta EE and LLMsJava and AI with LangChain4j: Integrating Jakarta EE and LLMs
Java and AI with LangChain4j: Integrating Jakarta EE and LLMs
Edward Burns
 
How to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDEHow to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDE
Edward Burns
 
How to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDEHow to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDE
Edward Burns
 
How to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDEHow to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDE
Edward Burns
 
How to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDEHow to get trusted AI in your favorite IDE
How to get trusted AI in your favorite IDE
Edward Burns
 
2024-09-10 Jacksonville JUG Java on Azure with AI
2024-09-10 Jacksonville JUG Java on Azure with AI2024-09-10 Jacksonville JUG Java on Azure with AI
2024-09-10 Jacksonville JUG Java on Azure with AI
Edward Burns
 
Deliver AI infused app innovation with Open Liberty on AKS
Deliver AI infused app innovation with Open Liberty on AKSDeliver AI infused app innovation with Open Liberty on AKS
Deliver AI infused app innovation with Open Liberty on AKS
Edward Burns
 
DevTalks Romania: Prepare for Jakarta EE 11
DevTalks Romania: Prepare for Jakarta EE 11DevTalks Romania: Prepare for Jakarta EE 11
DevTalks Romania: Prepare for Jakarta EE 11
Edward Burns
 
Developer Career Masterplan
Developer Career MasterplanDeveloper Career Masterplan
Developer Career Masterplan
Edward Burns
 
Jakarta EE 11 Status Update​
Jakarta EE 11 Status Update​Jakarta EE 11 Status Update​
Jakarta EE 11 Status Update​
Edward Burns
 
Sponsored Session: Please touch that dial!
Sponsored Session: Please touch that dial!Sponsored Session: Please touch that dial!
Sponsored Session: Please touch that dial!
Edward Burns
 
How modernizing enterprise applications gives you a competitive advantage
How modernizing enterprise applications gives you a competitive advantageHow modernizing enterprise applications gives you a competitive advantage
How modernizing enterprise applications gives you a competitive advantage
Edward Burns
 
Wie Azure Jakarta EE Nutzt
Wie Azure Jakarta EE NutztWie Azure Jakarta EE Nutzt
Wie Azure Jakarta EE Nutzt
Edward Burns
 
Practical lessons from customers performing digital transformation with Azure
Practical lessons from customers performing digital transformation with AzurePractical lessons from customers performing digital transformation with Azure
Practical lessons from customers performing digital transformation with Azure
Edward Burns
 
wls-azure-devnexus-2022.pdf
wls-azure-devnexus-2022.pdfwls-azure-devnexus-2022.pdf
wls-azure-devnexus-2022.pdf
Edward Burns
 

Recently uploaded (20)

TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
Andre Hora
 
Top 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docxTop 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docx
Portli
 
Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025
kashifyounis067
 
Download YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full ActivatedDownload YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full Activated
saniamalik72555
 
Revolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptxRevolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptx
nidhisingh691197
 
The Significance of Hardware in Information Systems.pdf
The Significance of Hardware in Information Systems.pdfThe Significance of Hardware in Information Systems.pdf
The Significance of Hardware in Information Systems.pdf
drewplanas10
 
Automation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath CertificateAutomation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath Certificate
VICTOR MAESTRE RAMIREZ
 
Explaining GitHub Actions Failures with Large Language Models Challenges, In...
Explaining GitHub Actions Failures with Large Language Models Challenges, In...Explaining GitHub Actions Failures with Large Language Models Challenges, In...
Explaining GitHub Actions Failures with Large Language Models Challenges, In...
ssuserb14185
 
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Orangescrum
 
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
Egor Kaleynik
 
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AIScaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
danshalev
 
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Andre Hora
 
Meet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Meet the Agents: How AI Is Learning to Think, Plan, and CollaborateMeet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Meet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Maxim Salnikov
 
Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025
kashifyounis067
 
How to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud PerformanceHow to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud Performance
ThousandEyes
 
Download Wondershare Filmora Crack [2025] With Latest
Download Wondershare Filmora Crack [2025] With LatestDownload Wondershare Filmora Crack [2025] With Latest
Download Wondershare Filmora Crack [2025] With Latest
tahirabibi60507
 
Kubernetes_101_Zero_to_Platform_Engineer.pptx
Kubernetes_101_Zero_to_Platform_Engineer.pptxKubernetes_101_Zero_to_Platform_Engineer.pptx
Kubernetes_101_Zero_to_Platform_Engineer.pptx
CloudScouts
 
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Eric D. Schabell
 
Pixologic ZBrush Crack Plus Activation Key [Latest 2025] New Version
Pixologic ZBrush Crack Plus Activation Key [Latest 2025] New VersionPixologic ZBrush Crack Plus Activation Key [Latest 2025] New Version
Pixologic ZBrush Crack Plus Activation Key [Latest 2025] New Version
saimabibi60507
 
FL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full VersionFL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full Version
tahirabibi60507
 
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
Andre Hora
 
Top 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docxTop 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docx
Portli
 
Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025
kashifyounis067
 
Download YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full ActivatedDownload YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full Activated
saniamalik72555
 
Revolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptxRevolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptx
nidhisingh691197
 
The Significance of Hardware in Information Systems.pdf
The Significance of Hardware in Information Systems.pdfThe Significance of Hardware in Information Systems.pdf
The Significance of Hardware in Information Systems.pdf
drewplanas10
 
Automation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath CertificateAutomation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath Certificate
VICTOR MAESTRE RAMIREZ
 
Explaining GitHub Actions Failures with Large Language Models Challenges, In...
Explaining GitHub Actions Failures with Large Language Models Challenges, In...Explaining GitHub Actions Failures with Large Language Models Challenges, In...
Explaining GitHub Actions Failures with Large Language Models Challenges, In...
ssuserb14185
 
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Orangescrum
 
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
Egor Kaleynik
 
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AIScaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
danshalev
 
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Andre Hora
 
Meet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Meet the Agents: How AI Is Learning to Think, Plan, and CollaborateMeet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Meet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Maxim Salnikov
 
Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025
kashifyounis067
 
How to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud PerformanceHow to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud Performance
ThousandEyes
 
Download Wondershare Filmora Crack [2025] With Latest
Download Wondershare Filmora Crack [2025] With LatestDownload Wondershare Filmora Crack [2025] With Latest
Download Wondershare Filmora Crack [2025] With Latest
tahirabibi60507
 
Kubernetes_101_Zero_to_Platform_Engineer.pptx
Kubernetes_101_Zero_to_Platform_Engineer.pptxKubernetes_101_Zero_to_Platform_Engineer.pptx
Kubernetes_101_Zero_to_Platform_Engineer.pptx
CloudScouts
 
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Mastering Fluent Bit: Ultimate Guide to Integrating Telemetry Pipelines with ...
Eric D. Schabell
 
Pixologic ZBrush Crack Plus Activation Key [Latest 2025] New Version
Pixologic ZBrush Crack Plus Activation Key [Latest 2025] New VersionPixologic ZBrush Crack Plus Activation Key [Latest 2025] New Version
Pixologic ZBrush Crack Plus Activation Key [Latest 2025] New Version
saimabibi60507
 
FL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full VersionFL Studio Producer Edition Crack 2025 Full Version
FL Studio Producer Edition Crack 2025 Full Version
tahirabibi60507
 

JavaOne 2014 Java EE 8 Booth Slides

  • 2. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Java EE 8
  • 3. Safe Harbor Statement The following is intended to outline our general product direcJon. It is intended for informaJon purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or funcJonality, and should not be relied upon in making purchasing decisions. The development, release, and Jming of any features or funcJonality described for Oracle’s products remains at the sole discreJon of Oracle. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | 3
  • 4. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Java EE 8 Themes • HTML5 / Web Tier Enhancements • Ease of Development / CDI alignment • Infrastructure for running in the Cloud • Driven by Community Feedback 4 JSR 366
  • 5. Community PrioriJzed Features Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | 5
  • 6. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | CDI 2.0 • Events – Asynchronous events – Event ordering – Event Range (war, ear, server, cluster) • Interceptor / Decorator (AOP) – Support AOP on custom or produced bean – Support AOP on inner calls (AOP enable when a method is called in same class) 6 JSR 365 • SPI enhancement – Beer access to CDI meta data – Contexts enhancement for 3rd party Spec
  • 7. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | CDI 2.0 (cont.) • Parts (“sub-­‐spec with sub-­‐impl.”) – CDI Light (simple IoC soluJon) – Event • Java SE support – Boot CDI from Java SE – Add SPI to easily integrate CDI in custom stack (i.e plug transacJon manager) 7 JSR 365
  • 8. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | JSON-­‐B 1.0 • ConverJng Java objects to & from JSON • Supports for different providers – Leverages mature JSON Binding frameworks – With a standard API • Mapping – Default + customized 8 JSR 367
  • 9. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | JMS 2.1 • New API to receive messages asynchronously – In Java SE, remove need to implement MessageListener – In Java EE, a simpler and more flexible alternaJve to JMS MDBs • Simpler, JMS-­‐specific annotaJons that allow any managed bean to listen for JMS messages • No need to implement MessageListener • No need to be restricted to MDB lifecycle 9 JSR 368 @RequestScoped public class MyListenerComponent { @JMSListener(destinationLookup="myQueue") @Transactional public void myCallback(Message message) { ... ... } }
  • 10. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | JMS 2.1 (cont.) • Completes ease-­‐of-­‐use improvements started in JMS 2.0 • Improved portability of JMS providers between ApplicaJon Servers • Further clarify behavior of JMS in a Java EE applicaJons • CorrecJons and improvements to new JMS 2.0 features • Extend specificaJon to cover redelivery loops and dead message queues • Other features proposed by the community and the Experts Group 10 JSR 368
  • 11. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Servlet 4.0 • Request/response mulJplexing – Servlet Request as HTTP/2 message • Stream prioriJzaJon – Add stream priority to HpServletRequest • Server push • Binary framing – Hidden from API • Upgrade from HTTP 1.1 11 JSR 369
  • 12. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Servlet 4.0 • Servlet 4.0 is important because HTTP 2.0 is important • HTTP 2.0 compliance – Server Push – Stream Priority – Upgrade from HTTP 1.1 • Compliance with latest HTTP 1.1 RFCs 7230 – 7235 – IETF PRECIS framework for secure Unicode – Numerous small compliance issues 12 JSR 369
  • 13. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | JAX-­‐RS 2.1 • ConJnued evoluJon of JAX-­‐RS API – All simple problems have already been solved… • Performance – ReacJve Programming Model – Java SE 8 Streams – Non-­‐blocking I/O 13 JSR 370
  • 14. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | JAX-­‐RS 2.1 (cont.) • Java EE Alignment – CDI Alignment – DeclaraJve Security Model – MVC 1.0 IntegraJon – JSONB 1.0 IntegraJon • Filling the Gaps – Server-­‐Sent Events – Improved Hypermedia Support – CORS 14 JSR 370
  • 15. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | MVC 1.0 • AcJon-­‐based Model-­‐View-­‐Controller architecture • Glues together key Java EE technologies: – Model • CDI, Bean ValidaJon, JPA – View • Facelets, JSP – Controller • Invent new technology? • Leverage exisJng technologies such as JAX-­‐RS, ... ? JSR 371 15
  • 16. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | JSF 2.3 JSR 372 • SpecificaJon clarificaJons • CDI alignment – Ease of use e.g. @Inject – Removal of old injecJon provider • Performance enhancements – Caching EL expressions were possible • Use Java SE 8 where possible 16
  • 17. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | JSF 2.3 (cont.) JSR 372 • MVC alignment • Shepherd EG driven features into spec – JSON ajax component rendering – State saving enhancements – Stateless enhancements – GET enhancements – … 17
  • 18. Java EE Management API 2.0 Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | • Update of JSR 77 • Define RESTful API for Java EE management – Incorporate all exisJng JSR 77 managed beans – Define event model using Server Sent Events – ConsideraJon will be given to mark the exisJng MEJB API as Proposed OpJonal • Define RESTful API for applicaJon deployment – Focus on simple cases first – Deployment support integrated to same API with other Java EE management JSR TBD 18
  • 19. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | JSON-­‐P 1.1 • Support for JSON standards – JSON Pointer (RFC 6901) and JSON Patch (RFC 6902) • Support for ediJng/transformaJon on JsonArray and JsonObject – Add API for the current builders • Support JSON query in JavaSE 8 – Add helper classes and methods to construct Collectors • Support for bing JSON data – Add API in JsonParser to construct JsonValues – Generate Java streams (high and low level) JSR TBD 19
  • 20. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Java EE Security 1.0 JSR TBD • Candidate Areas to Enhance Portability, Flexibility, Ease-­‐of-­‐Use – Password Aliasing – User Management – Role Mapping – AuthenJcaJon – REST AuthenJcaJon – AuthorizaJon 20
  • 21. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Java EE Security 1.0 JSR TBD • AuthorizaIon via CDI Interceptors @IsAuthorized("hasRoles('Manager') && schedule.officeHrs") void transferFunds() @IsAuthorized("hasRoles('Manager') && hasAttribute('directReports', employee.id)") double getSalary(long employeeId); @IsAuthorized(ruleSourceName="java:app/payrollAuthRules", rule="report") void displayReport(); 21
  • 22. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Java EE 8 JSRs • Java EE 8 Platorm • CDI 2.0 • JSON Binding 1.0 • JAX-­‐RS 2.1 • MVC 1.0 • Java Servlet 4.0 • JSF 2.3 • JMS 2.1 22 As of today Coming soon… • JSON-­‐P 1.1 • Java EE Security 1.0 • Java EE Management 2.0 • JCache 1.1 • And more to follow…
  • 23. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | And more to follow… • EL • Concurrency UJliJes • Connector Architecture • WebSocket • Interceptors • JPA 23 • EJB • JTA • Batch • JavaMail • …
  • 24. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Transparency • Our Java EE 8 JSRs run in the open on java.net – hp://javaee-­‐spec.java.net – One project per JSR – jax-­‐rs-­‐spec, mvc-­‐spec, servlet-­‐spec,... • Publically viewable Expert Group mail archive – Users observer lists gets all copies • Publicly accessible issue tracker / JIRA • Publicly accessible download area • … 24 Commitment to JCP transparent processes
  • 25. Proposed Final Draft Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | 25 Java EE Roadmap Public Review Drafts JSR Submissions Java EE 8 Final Early Draft Specifications Java EE 8 Planning 06/2014 01/2015 01/2015 01/2016 09/2017
  • 26. Java EE 8 New JSRs New OpportuniJes Get Involved! Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | ConJnue to parJcipate 26 Java EE 7 14 adopted JSRs 19 Java User Groups Thank You! ParDcipate with us! hIp://glassfish.org/contribute
  • 27. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | GlassFish Server
  • 28. GlassFish Server Open Source EdiJon 4.1 Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | 28 Updated PlaSorm Support • Java 8 • CDI 1.2 • WebSocket 1.1 Jersey (JAX-­‐RS) • New diagnosJcs API • SSE client reconnect Tyrus (WebSocket) • Session limits • Proxy support • Client reconnect Stability and Quality • Feature enhancements • 1000+ bugs fixes And More … • Updated Java EE 7 SDK • JMS over WebSockets
  • 29. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Meet the Experts
  • 30. Meet the Experts – Monday Sept. 29 Schedule Expert(s) Technology 10-­‐11 AM Bruno Borges Adopt-­‐a-­‐JSR for Java EE 8, any Java EE 8 technology 11 – 12 PM MarJn Grebac JSON-­‐B 12 -­‐ 1 PM Kin-­‐man Chung JSON-­‐P and EL 1 -­‐ 2 PM Marek Potociar Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Pavel Bucek JAX-­‐RS WebSocket (JSR 356) 2 -­‐ 3 PM Linda DeMichiel Java EE 8 4 -­‐ 5 PM Reza Rahman Adopt-­‐a-­‐JSR for Java EE 8, any Java EE 8 technology 30
  • 31. Meet the Experts – Tuesday Sept. 30 Schedule Expert(s) Technology 10-­‐11 AM Heather VanCura JCP/JCP.Next (JSR 364), Adopt-­‐a-­‐JSR 11 – 12 PM MarJn Mares Java EE Management 12 -­‐ 1 PM Nigel Deakin JMS 1 -­‐ 2 PM Reza Rahman Adopt-­‐a-­‐JSR for Java EE 8, any Java EE 8 technology 2 -­‐ 3 PM Ed Burns, Shing Wai Chan JSF 2.3 and Servlets 4.0 4 -­‐ 5 PM Marek Potociar JAX-­‐RS Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | 31
  • 32. Meet the Experts -­‐ Wednesday Oct. 1 Schedule Expert(s) Technology 10-­‐11 AM Antoine Sabot-­‐Durand CDI 11 – 12 PM Antoine Sabot-­‐Durand CDI 12 -­‐ 1 PM Brian Oliver Jcache 1 -­‐ 2 PM David Delabassee Adopt-­‐a-­‐JSR for Java EE 8, any Java EE 8 technology 2 -­‐ 3 PM Manfred Riem MVC 1.0 and JSF 2.3 Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | 32