SlideShare a Scribd company logo
1 of 49
Download to read offline
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Web	protocols	for	Java	
Developers	
Pavel	Bucek	
	
Oracle	
September,	2016	
CON4156
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Safe	Harbor	Statement	
The	preceding	is	intended	to	outline	our	general	product	direcLon.	It	is	intended	for	
informaLon	purposes	only,	and	may	not	be	incorporated	into	any	contract.	It	is	not	a	
commitment	to	deliver	any	material,	code,	or	funcLonality,	and	should	not	be	relied	upon	
in	making	purchasing	decisions.	The	development,	release,	and	Lming	of	any	features	or	
funcLonality	described	for	Oracle’s	products	remains	at	the	sole	discreLon	of	Oracle.	
4
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Program	Agenda	
	
EvoluLon	–	HTTP	and	rest	REST	
Polling,	Long	Polling	
SSE,	WebSocket	
HTTP/2	
Demo,	Q&A	
1	
2	
3	
4	
5	
5
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	HTTP	
	
•  HTTP	V0.9	(1991)	
– First	version	proposed	by	Tim	Berners-Lee	from	CERN	
– Only	GET	method,	server	returned	HTML	
– W3C	standard	
– Fun	to	read,	whole	standard	is	a	single	page	
hbps://www.w3.org/Protocols/HTTP/AsImplemented.html	
•  Dave	Raggeb	–	leader	of	the	HTTP	Working	Group	–	expanding	protocol	
with	more	operaLons,	meta-informaLon,	security,	..		
•  HTTP	V1.0	introduced	in	1995	–	RFC	1945	
Hypertext	Transfer	Protocol	
6
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	HTTP	
	
•  HTTP	Working	Group	published	HTTP/1.1	as	“pre-standard”	
•  Rapid	adopLon	by	servers	and	browsers	
– (Arena,	Netscape,	Mosaic,	Lynx,	Internet	Explorer)	
•  HTTP/1.1	finalized	in	1997	(RFC	2068),	improved	in	1999	(RFC	2616)	
•  2007	-	HTTPbis	Working	group	formed	to	revise	and	clarify	the	spec	
– RFC	7230	–	Message	Syntax	and	RouLng,	7231	–	SemanLcs	and	Content,	7232	–	
CondiLonal	Requests,	7233	–	Range	Requests,	7234	-	Caching,	7235	–	AuthenLcaLon	
•  HTTP/2	–	May	2015	–	RFC	7540	
Hypertext	Transfer	Protocol	
7
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Hypertext	Transfer	Protocol	
	
8	
REQUEST	
	
GET	/en/	HTTP/1.1	
Host:	www.java.com	
User-Agent:	curl/7.43.0	
Accept:	*/*	
	
<CR><LF><CR><LF>		
RESPONSE	
	
HTTP/1.1	200	OK	
Server:	Oracle-ApplicaLon-Server-11g	
Last-Modified:	Thu,	31	Mar	2016	22:48:16	GMT	
device_type:	Any	
host_service:	FutureTenseContentServer:11.1.1.8.0	
X-Powered-By:	Servlet/2.5	JSP/2.1	
Content-Type:	text/html;	charset=UTF-8	
Content-Language:	en	
X-Frame-OpLons:	SAMEORIGIN	
Content-Length:	7516	
Date:	Mon,	05	Sep	2016	20:22:35	GMT	
ConnecLon:	keep-alive	
Vary:	User-Agent	
	
...	Content	<CR><LF><CR><LF>
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	REST	
	
•  Basic	sovware	architecture	/	scheme	
•  Exposes	Resources	(URIs),	which	handle	METHODs	
– GET/PUT/POST/DELETE/HEAD/OPTIONS/TRACE/PATCH/…	
•  MediaType	(Accept/Content-Type)	
– text/plain,	text/html,	applicaLon/json,	…	
•  Caching	(GET,	HEAD),	Hyperlinking,	…	
Representa@onal	State	Transfer	
9
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	REST	
	
Representa@onal	State	Transfer	
10	
Client	 Server	
GET	/hello	HTTP/1.1	
Header:	value	
…	
HTTP/1.1	200	OK	
Header:	value	
…	
<enLty>
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Java	API	for	RESTful	Web	Services	(JAX-RS)	
	
•  JSR	311	–	JAX-RS	1.1	–	Java	EE	6	
– Server	side	REST	Resources	
– @Path,	@GET,	@POST,	@Produces,	@Consumes,	@QueryParam,	@Context,	…	
•  JSR	399	–	JAX-RS	2.0	–	Java	EE	7	
– Client	API,	Filters	and	Interceptors,	Async	processing,	integraLon	with	other	EE	specs	
•  JAX-RS	2.1	–	Java	EE	8	
– Non-blocking	IO,	ReacLve	Client	API,	Server	Sent	Events,	…
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	REST	
	
Java	API	–	JAX-RS	
12
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	Polling	
	
13	
Client	 Server	
GET	/hello	HTTP/1.1	
Header:	value	
…	
HTTP/1.1	200	OK	
Header:	value	
…	
<enLty>
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	Long-Polling	
	
14	
Client	 Server	
GET	/hello	HTTP/1.1	
Header:	value	
…	
HTTP/1.1	200	OK	
Header:	value	
…	
<enLty	-	CHUNK>	
<enLty	-	CHUNK>
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	SSE	
	
•  Channel	for	sending	events	from	the	server	to	the	client	
•  Very	similar	to	long	polling	
•  Accept:	text/event-stream	
•  Semi-permanent	connecLon	
•  Limited	browser	support	(no	IE,	no	Android)	
•  Java	EE	8+	J	
– Included	in	JAX-RS	2.1	
Server	Sent	Events	
15
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
HTTP/1.1	200	OK	
Content-Type:	text/event-stream	
Date:	Tue,	06	Sep	2016	15:39:30	GMT	
Transfer-Encoding:	chunked	
		
event:	custom-message	
data:	JAX-RS	2.1	
	
event:	custom-message	
data:	test	
	
event:	custom-message	
data:	JavaOne2016	
	
Server	Sent	Events	
	
16	
Client	 Server	
GET	/sse	
Accept:	text/event-stream
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
HTTP/1.1	200	OK	
Content-Type:	text/event-stream	
Date:	Tue,	06	Sep	2016	15:39:30	GMT	
Transfer-Encoding:	chunked	
		
event:	custom-message	
data:	JAX-RS	2.1	
	
event:	custom-message	
data:	test	
	
event:	custom-message	
data:	JavaOne2016	
	
Server	Sent	Events	
	
17	
Client	 Server	
GET	/sse	
Accept:	text/event-stream
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Server	Sent	Events	
	
18	
Use	ExecutorService	instead	
P
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Server	Sent	Events	
	
19	 P
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Server	Sent	Events	
	
20	 P
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	WebSocket	
	
•  RFC	6455	(December	2011)	
•  Bi-direcLonal	communicaLon	
•  Uses	HTTP/1.1	for	iniLal	handshake	
– Completely	different	protocol	averwards	
•  “Server”	and	“client”	endpoints	are	equal	aver	handshake	
•  Text	or	binary	payload	
•  Supported	in	all	modern	browsers	
21
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	WebSocket	
	
WebSocket	Frame	
22
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	usecases	
	
•  RFC	7118	–	SIP	over	WebSocket	
•  RFC	7355	–	SIP	&	CLF	(Common	Log	Format)	over	WebSocket	
•  RFC	7395	–	XMPP	over	WebSocket	
•  Dravs	
– MSRP	(Message	Session	Relay	Protocol)	over	WebSocket	
– SDP	(Session	DescripLon	Protocol)	over	WebSocket	
– Remote	Framebuffer	Protocol	over	WebSocket	
– <anything>	over	WebSocket	
Subprotocols	
23
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Java	API	for	WebSocket	
	
•  JSR	356	–	Part	of	Java	EE	7	
– 1.0	(May	2013)	
– 1.1	(August	2014)	
•  Annotated	and	programmaLc	way	how	to	deploy	and	access	WebSocket	
endpoints	
•  Event-driven	model	-	@OnOpen,	@OnMessage,	@OnError,	@OnClose	
•  Encoders/Decoders,	Path/Query	parameter	handling,	Handshake	headers	
interceptors,	CDI	integraLon,	…
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Java	API	for	WebSocket	–	Annotated	Endpoint
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Java	API	for	WebSocket	–	ProgrammaLc	Endpoint
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	vs	REST	
	
•  Might	seem	to	be	similar	and	some	people	even	think	about	WebSocket	as	
about	another	“RevoluLon”	–	like	SOAP	-->	REST	
•  In	reality,	these	are	two	different	concepts	which	COMPLEMENT	each	
other.	
•  REST	makes	more	sense	for	standard	web	pages,	forms,	…	
•  WebSocket	provides	bi-direcLonal	channel,	suitable	for	exchanging	“short”	
messages	with	the	browser.	
– (the	scope	is	not	limited,	you	can	re-implement	all	your	communicaLon	with	server,	
but	there	is	no	point	in	doing	that..)	
27
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	HTTP/2	
	
•  Same	semanLcs	as	HTTP/1.1	
•  Binary	protocol	
•  MulLplexed	communicaLon	
– Single	TCP	connecLon	to	single	origin,	shared	for	consequent/parallel	requests	
•  Compressed	headers	
– HTTP/2	introduces	HPACK	(compression	algorithm)	
•  Server	Push	
– Server	can	push	(cacheable)	content	to	the	client	before	client	asks	
HTTP/2	Key	Features	
28
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
EvoluLon	–	HTTP/2	
	
29	
Client	 Server	
HTTP/2	connecLon	
(single	TCP	connecLon)	
HTTP/2	streams	
:method	GET	
:path	/resource1	
:method	GET	
:path	/resourceX
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	vs	HTTP/2	
	
•  Pushed	resources	are	cached	on	client	side	
•  When	client	decides	it	needs	something	(image,	..),	it	looks	into	the	cache	
– Doesn’t	need	to	be	image,	but	all	cool	demos	are	using	that	(remember	SPDY)	
•  Server	push	has	its	own	issues	
– What	if	client	does	not	need	pushed	resource?	(there	might	be	other	caches,	…)	
– Client	need	to	explicitly	state	that	it	accepts	Server	push	
•  Push	is	not	an	interac@ve	message	exchange	
WebSocket	vs	Server	push	
30
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
SSE	and	HTTP/2	
	
31	
Client	 Server	
HTTP/2	connecLon	
(single	TCP	connecLon)	
HTTP/2	streams	
:method	GET	
:path	/sse	
:method	POST	
:path	/events	
:status	200	OK	
Content-type:	text/event-stream
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	and	HTTP/2	
	
	
Standards..	
32	
•  Currently,	WebSocket	is	not	defined	in	HTTP/2	world	
•  WebSocket	uses	UPGRADE	header,	which	gives	complete	control	over	TCP	
connecLon	
•  HTTP/2	Streams	could	
			support	WS	mulLplex
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	 33	
Usecases	
	 HTTP	 SSE	
WebSockets	
Chat	
Sta@c	pages	
Forms	
Games	
Remote	control	
Monitoring	
Messaging	/	No@fica@on	
X	over	WS	
Tracking	progress	
Images,	…	
REST
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Demo	
34
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Java	9	
	
•  Replace	“good”	old	HbpURLConnecLon	
•  JDK	9	–	JEP	110:	HTTP/2	Client:	hbp://openjdk.java.net/jeps/110	
– Define	a	new	HTTP	client	API	that	implements	HTTP/2	and	WebSocket,	…	
HTTP/REST	&	WebSocket	client	
35
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Next	Steps	
•  Take	the	survey	
– hbp://glassfish.org/survey	
•  Send	technical	comments	to	
– users@javaee-spec.java.net	
•  Join	the	JCP	–	come	to	Hackergarden	in	Java	Hub	
– hbps://jcp.org/en/parLcipaLon/membership_drive		
•  Join	or	track	the	JSRs	as	they	progress	
– hbps://java.net/projects/javaee-spec/pages/SpecificaLons	
•  Adopt-a-JSR	
– hbps://community.oracle.com/community/java/jcp/adopt-a-jsr	
	
Give	us	your	feedback	
36
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Where	to	Learn	More	at	JavaOne	
37	
Session	Number	 Session	Title	 Day	/	Time		
CON1558		 What's	New	in	the	Java	API	for	JSON	Binding	 Monday	5:30	p.m	
BOF7984		 Java	EE	for	the	Cloud	 Monday	7:00	p.m	
CON4022	 CDI	2.0	Is	Coming	 Tuesday	11:00	a.m	
CON7983		 JAX-RS	2.1	for	Java	EE	8		 Tuesday	12:30	p.m	
CON7980		 Servlet	4.0:	Status	Update	and	HTTP/2		 Tuesday	4:00	p.m	
CON7978		 Security	for	Java	EE	8	and	the	Cloud	 Tuesday	5:30	p.m	
CON7979		 ConfiguraLon	for	Java	EE	8	and	the	Cloud		 Wednesday	11:30	a.m	
CON7977	 Java	EE	Next	–	HTTP/2	and	REST	 Wednesday	1:00	p.m	
CON6077	 The	Illusion	of	Statelessness	 Wednesday	4:30	p.m	
CON	7981	 JSF	2.3	 Thursday	11:30	a.m
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
Contacts/QA	
	
•  Pavel	Bucek	(pavel.bucek@oracle.com)	
•  Jersey	/	JAX-RS	RI	:	hbp://jersey.java.net	
– users@jersey.java.net	
•  Tyrus	/	WebSocket	RI	:	hbp://tyrus.java.net	
– users@tyrus.java.net	
	
Feel	free	to	ask	any	quesLons	now	or	contact	me	later.	
38
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	and	Clustering	
	
•  Different	to	“classic”	cluster	
– We’d	like	to	talk	to	other	sessions	(clients)	directly	
•  Clustered	environment	present	different	challenges	
– “Finding	a	WebSocket	Session”	might	not	be	as	trivial	as	it	seem	
•  Broadcast	(mass-noLficaLon)	is	common	usecase	
•  Clustering	can	help	
– BroadcasLng	to	“all	sessions”	can	be	faster	in	clustered	environment	
41
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	and	Clustering	
	
42	
JMS,	
JCache,	
Coherence,	
…	
Load	Balancer
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	and	Clustering	
	
43	
JMS,	
JCache,	
Coherence,	
…	
Load	Balancer
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	and	Clustering	
	
44	
JMS,	
JCache,	
Coherence,	
…	
Load	Balancer
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	and	Clustering	
	
45	
JMS,	
JCache,	
Coherence,	
…	
Load	Balancer
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	and	Clustering	
	
•  Different	requirements	
•  Load	balancers	might	need	to	manage	more	open	connecLons	
•  Cannot	re-balance	when	session	is	already	created	
– Node	is	added	–	ok,	but	I	cannot	easily	decrease	load	on	other	nodes,	I	can	use	the	
new	node	only	for	new	connecLons	
•  Node	going	down	is	not	transparent	to	client	
– Robust	clients	can	hide	this,	but	for	now,	this	requires	custom	soluLon	
– WLS	12.2.1	offers	a	soluLon	for	this..	
46
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	and	Clustering	
	
47	
JMS,	
JCache,	
Coherence,	
…	
Load	Balancer
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	and	Clustering	
	
48	
JMS,	
JCache,	
Coherence,	
…	
Load	Balancer
Copyright	©	2016,	Oracle	and/or	its	affiliates.	All	rights	reserved.		|	
WebSocket	and	Clustering	
	
•  Might	require	more	applicaLon	code	
– Proper	handling	on	client	side	
– Even	more	code	when	you	want	to	have	something	like	auto	reconnect	+	“session	
recovery”	
•  Infrastructure	requirements	
– Similar	to	SSL	(persistent	connecLon,	…)	
•  Much	more	effecLve	when	compared	to	the	same	app	implemented	using	
long-polling	
49

More Related Content

What's hot

HTTP/2 in the Java Platform -- Java Champions call February 2016
HTTP/2 in the Java Platform -- Java Champions call February 2016HTTP/2 in the Java Platform -- Java Champions call February 2016
HTTP/2 in the Java Platform -- Java Champions call February 2016Ed Burns
 
JDKIO: Java EE 8 what Servlet 4 and HTTP2 mean to you
JDKIO: Java EE 8 what Servlet 4 and HTTP2 mean to youJDKIO: Java EE 8 what Servlet 4 and HTTP2 mean to you
JDKIO: Java EE 8 what Servlet 4 and HTTP2 mean to youAlex Theedom
 
How to Thrive on REST/WebSocket-Based Microservices
How to Thrive on REST/WebSocket-Based MicroservicesHow to Thrive on REST/WebSocket-Based Microservices
How to Thrive on REST/WebSocket-Based MicroservicesPavel Bucek
 
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 2015Edward Burns
 
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
 
WebSocket in Enterprise Applications 2015
WebSocket in Enterprise Applications 2015WebSocket in Enterprise Applications 2015
WebSocket in Enterprise Applications 2015Pavel Bucek
 
Java EE 7 for WebLogic 12c Developers
Java EE 7 for WebLogic 12c DevelopersJava EE 7 for WebLogic 12c Developers
Java EE 7 for WebLogic 12c DevelopersBruno Borges
 
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 374Heather VanCura
 
WebSockets - Realtime em Mundo Conectado
WebSockets - Realtime em Mundo ConectadoWebSockets - Realtime em Mundo Conectado
WebSockets - Realtime em Mundo ConectadoBruno Borges
 
Oracle APEX 기초 워크샵 - 실습 가이드 문서: Part 2 (2/2)
Oracle APEX 기초 워크샵 - 실습 가이드 문서:  Part 2 (2/2)Oracle APEX 기초 워크샵 - 실습 가이드 문서:  Part 2 (2/2)
Oracle APEX 기초 워크샵 - 실습 가이드 문서: Part 2 (2/2)Taewan Kim
 
Servlet 4.0 JavaOne 2017
Servlet 4.0 JavaOne 2017Servlet 4.0 JavaOne 2017
Servlet 4.0 JavaOne 2017Ed Burns
 
SmartDB Office Hours: Connection Pool Sizing Concepts
SmartDB Office Hours: Connection Pool Sizing ConceptsSmartDB Office Hours: Connection Pool Sizing Concepts
SmartDB Office Hours: Connection Pool Sizing ConceptsKoppelaars
 
Open Device Programmability: Hands-on Intro to RESTCONF (and a bit of NETCONF)
Open Device Programmability: Hands-on Intro to RESTCONF (and a bit of NETCONF)Open Device Programmability: Hands-on Intro to RESTCONF (and a bit of NETCONF)
Open Device Programmability: Hands-on Intro to RESTCONF (and a bit of NETCONF)Cisco DevNet
 
Oracle Cloud: Anything as a Service
Oracle Cloud: Anything as a ServiceOracle Cloud: Anything as a Service
Oracle Cloud: Anything as a ServiceBruno Borges
 
UCS Management APIs A Technical Deep Dive
UCS Management APIs A Technical Deep DiveUCS Management APIs A Technical Deep Dive
UCS Management APIs A Technical Deep DiveCisco DevNet
 

What's hot (20)

HTTP/2 Comes to Java
HTTP/2 Comes to JavaHTTP/2 Comes to Java
HTTP/2 Comes to Java
 
HTTP/2 in the Java Platform -- Java Champions call February 2016
HTTP/2 in the Java Platform -- Java Champions call February 2016HTTP/2 in the Java Platform -- Java Champions call February 2016
HTTP/2 in the Java Platform -- Java Champions call February 2016
 
JDKIO: Java EE 8 what Servlet 4 and HTTP2 mean to you
JDKIO: Java EE 8 what Servlet 4 and HTTP2 mean to youJDKIO: Java EE 8 what Servlet 4 and HTTP2 mean to you
JDKIO: Java EE 8 what Servlet 4 and HTTP2 mean to you
 
HTTP/2 Comes to Java
HTTP/2 Comes to JavaHTTP/2 Comes to Java
HTTP/2 Comes to Java
 
How to Thrive on REST/WebSocket-Based Microservices
How to Thrive on REST/WebSocket-Based MicroservicesHow to Thrive on REST/WebSocket-Based Microservices
How to Thrive on REST/WebSocket-Based Microservices
 
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
 
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...
 
WebSocket in Enterprise Applications 2015
WebSocket in Enterprise Applications 2015WebSocket in Enterprise Applications 2015
WebSocket in Enterprise Applications 2015
 
MVC 1.0 / JSR 371
MVC 1.0 / JSR 371MVC 1.0 / JSR 371
MVC 1.0 / JSR 371
 
Java EE 7 for WebLogic 12c Developers
Java EE 7 for WebLogic 12c DevelopersJava EE 7 for WebLogic 12c Developers
Java EE 7 for WebLogic 12c Developers
 
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
 
WebSockets - Realtime em Mundo Conectado
WebSockets - Realtime em Mundo ConectadoWebSockets - Realtime em Mundo Conectado
WebSockets - Realtime em Mundo Conectado
 
Oracle APEX 기초 워크샵 - 실습 가이드 문서: Part 2 (2/2)
Oracle APEX 기초 워크샵 - 실습 가이드 문서:  Part 2 (2/2)Oracle APEX 기초 워크샵 - 실습 가이드 문서:  Part 2 (2/2)
Oracle APEX 기초 워크샵 - 실습 가이드 문서: Part 2 (2/2)
 
Servlet 4.0 JavaOne 2017
Servlet 4.0 JavaOne 2017Servlet 4.0 JavaOne 2017
Servlet 4.0 JavaOne 2017
 
JavaCro'15 - HTTP2 Comes to Java! - David Delabassee
JavaCro'15 - HTTP2 Comes to Java! - David DelabasseeJavaCro'15 - HTTP2 Comes to Java! - David Delabassee
JavaCro'15 - HTTP2 Comes to Java! - David Delabassee
 
SmartDB Office Hours: Connection Pool Sizing Concepts
SmartDB Office Hours: Connection Pool Sizing ConceptsSmartDB Office Hours: Connection Pool Sizing Concepts
SmartDB Office Hours: Connection Pool Sizing Concepts
 
Open Device Programmability: Hands-on Intro to RESTCONF (and a bit of NETCONF)
Open Device Programmability: Hands-on Intro to RESTCONF (and a bit of NETCONF)Open Device Programmability: Hands-on Intro to RESTCONF (and a bit of NETCONF)
Open Device Programmability: Hands-on Intro to RESTCONF (and a bit of NETCONF)
 
Oracle Cloud: Anything as a Service
Oracle Cloud: Anything as a ServiceOracle Cloud: Anything as a Service
Oracle Cloud: Anything as a Service
 
UCS Management APIs A Technical Deep Dive
UCS Management APIs A Technical Deep DiveUCS Management APIs A Technical Deep Dive
UCS Management APIs A Technical Deep Dive
 
As Novidades do Java EE 8
As Novidades do Java EE 8As Novidades do Java EE 8
As Novidades do Java EE 8
 

Viewers also liked

eCommerce for SOLAR Company (fashion)
eCommerce for SOLAR Company (fashion)eCommerce for SOLAR Company (fashion)
eCommerce for SOLAR Company (fashion)Divante
 
An introduction to software architectures
An introduction to software architecturesAn introduction to software architectures
An introduction to software architecturesPatrizio Pelliccione
 
Understanding the Web through HTTP
Understanding the Web through HTTPUnderstanding the Web through HTTP
Understanding the Web through HTTPOlivia Brundage
 
A first Draft to Java Configuration
A first Draft to Java ConfigurationA first Draft to Java Configuration
A first Draft to Java ConfigurationAnatole Tresch
 
Configuration for Java EE: Config JSR and Tamaya
Configuration for Java EE: Config JSR and TamayaConfiguration for Java EE: Config JSR and Tamaya
Configuration for Java EE: Config JSR and TamayaDmitry Kornilov
 
Java EE 8 Update
Java EE 8 UpdateJava EE 8 Update
Java EE 8 UpdateRyan Cuprak
 
Java EE8 - by Kito Mann
Java EE8 - by Kito Mann Java EE8 - by Kito Mann
Java EE8 - by Kito Mann Kile Niklawski
 
Adopt-a-JSR session (JSON-B/P)
Adopt-a-JSR session (JSON-B/P)Adopt-a-JSR session (JSON-B/P)
Adopt-a-JSR session (JSON-B/P)Dmitry Kornilov
 
Intro to web services
Intro to web servicesIntro to web services
Intro to web servicesNeil Ghosh
 
Making Java REST with JAX-RS 2.0
Making Java REST with JAX-RS 2.0Making Java REST with JAX-RS 2.0
Making Java REST with JAX-RS 2.0Dmytro Chyzhykov
 
Reactive Java EE - Let Me Count the Ways!
Reactive Java EE - Let Me Count the Ways!Reactive Java EE - Let Me Count the Ways!
Reactive Java EE - Let Me Count the Ways!Reza Rahman
 
Spring Framework - MVC
Spring Framework - MVCSpring Framework - MVC
Spring Framework - MVCDzmitry Naskou
 
Adopt-a-jsr Mar 1 2017 JAX-RS update
Adopt-a-jsr Mar 1 2017 JAX-RS updateAdopt-a-jsr Mar 1 2017 JAX-RS update
Adopt-a-jsr Mar 1 2017 JAX-RS updatePavel Bucek
 
Internet of Things - The Tip of an Iceberg
Internet of Things - The Tip of an IcebergInternet of Things - The Tip of an Iceberg
Internet of Things - The Tip of an IcebergDr. Mazlan Abbas
 

Viewers also liked (15)

eCommerce for SOLAR Company (fashion)
eCommerce for SOLAR Company (fashion)eCommerce for SOLAR Company (fashion)
eCommerce for SOLAR Company (fashion)
 
An introduction to software architectures
An introduction to software architecturesAn introduction to software architectures
An introduction to software architectures
 
Understanding the Web through HTTP
Understanding the Web through HTTPUnderstanding the Web through HTTP
Understanding the Web through HTTP
 
A first Draft to Java Configuration
A first Draft to Java ConfigurationA first Draft to Java Configuration
A first Draft to Java Configuration
 
Configuration for Java EE: Config JSR and Tamaya
Configuration for Java EE: Config JSR and TamayaConfiguration for Java EE: Config JSR and Tamaya
Configuration for Java EE: Config JSR and Tamaya
 
Java EE 8 Update
Java EE 8 UpdateJava EE 8 Update
Java EE 8 Update
 
Java EE8 - by Kito Mann
Java EE8 - by Kito Mann Java EE8 - by Kito Mann
Java EE8 - by Kito Mann
 
Java EE for the Cloud
Java EE for the CloudJava EE for the Cloud
Java EE for the Cloud
 
Adopt-a-JSR session (JSON-B/P)
Adopt-a-JSR session (JSON-B/P)Adopt-a-JSR session (JSON-B/P)
Adopt-a-JSR session (JSON-B/P)
 
Intro to web services
Intro to web servicesIntro to web services
Intro to web services
 
Making Java REST with JAX-RS 2.0
Making Java REST with JAX-RS 2.0Making Java REST with JAX-RS 2.0
Making Java REST with JAX-RS 2.0
 
Reactive Java EE - Let Me Count the Ways!
Reactive Java EE - Let Me Count the Ways!Reactive Java EE - Let Me Count the Ways!
Reactive Java EE - Let Me Count the Ways!
 
Spring Framework - MVC
Spring Framework - MVCSpring Framework - MVC
Spring Framework - MVC
 
Adopt-a-jsr Mar 1 2017 JAX-RS update
Adopt-a-jsr Mar 1 2017 JAX-RS updateAdopt-a-jsr Mar 1 2017 JAX-RS update
Adopt-a-jsr Mar 1 2017 JAX-RS update
 
Internet of Things - The Tip of an Iceberg
Internet of Things - The Tip of an IcebergInternet of Things - The Tip of an Iceberg
Internet of Things - The Tip of an Iceberg
 

Similar to Web protocols for java developers

Pitfalls of migrating projects to JDK 9
Pitfalls of migrating projects to JDK 9Pitfalls of migrating projects to JDK 9
Pitfalls of migrating projects to JDK 9Pavel Bucek
 
Push-button Composition of Oracle Application and Database Environments: Avi ...
Push-button Composition of Oracle Application and Database Environments: Avi ...Push-button Composition of Oracle Application and Database Environments: Avi ...
Push-button Composition of Oracle Application and Database Environments: Avi ...OpenStack
 
Develop Oracle Virtual Box and deploy to Cloud
Develop Oracle Virtual Box and deploy to CloudDevelop Oracle Virtual Box and deploy to Cloud
Develop Oracle Virtual Box and deploy to CloudInprise Group
 
3° Sessione Oracle - CRUI: Mobile&Conversational Interface
3° Sessione Oracle - CRUI: Mobile&Conversational Interface3° Sessione Oracle - CRUI: Mobile&Conversational Interface
3° Sessione Oracle - CRUI: Mobile&Conversational InterfaceJürgen Ambrosi
 
MySQL as a Document Store
MySQL as a Document StoreMySQL as a Document Store
MySQL as a Document StoreMark Swarbrick
 
Japanese Introduction to Oracle JET
Japanese Introduction to Oracle JETJapanese Introduction to Oracle JET
Japanese Introduction to Oracle JETGeertjan Wielenga
 
MySQL Group Replication
MySQL Group ReplicationMySQL Group Replication
MySQL Group ReplicationMark Swarbrick
 
Java EE Next - BeJUG JavaOne Afterglow 2016
Java EE Next - BeJUG JavaOne Afterglow 2016Java EE Next - BeJUG JavaOne Afterglow 2016
Java EE Next - BeJUG JavaOne Afterglow 2016David Delabassee
 
Oracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStackOracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStackOTN Systems Hub
 
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]vasuballa
 
Next Generation Data Center Strategies
Next Generation Data Center StrategiesNext Generation Data Center Strategies
Next Generation Data Center StrategiesVenkat Nambiyur
 
Jfokus 2017 Oracle Dev Cloud and Containers
Jfokus 2017 Oracle Dev Cloud and ContainersJfokus 2017 Oracle Dev Cloud and Containers
Jfokus 2017 Oracle Dev Cloud and ContainersMika Rinne
 
Oracle Solaris Build and Run Applications Better on 11.3
Oracle Solaris  Build and Run Applications Better on 11.3Oracle Solaris  Build and Run Applications Better on 11.3
Oracle Solaris Build and Run Applications Better on 11.3OTN Systems Hub
 
MySQL Enterprise Cloud
MySQL Enterprise Cloud MySQL Enterprise Cloud
MySQL Enterprise Cloud Mark Swarbrick
 
MySQL Enterprise Cloud
MySQL Enterprise CloudMySQL Enterprise Cloud
MySQL Enterprise CloudMark Swarbrick
 
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a ServiceOracle Korea
 
OOW16 - Leverage Oracle Integration Cloud Service for Oracle E-Business Suite...
OOW16 - Leverage Oracle Integration Cloud Service for Oracle E-Business Suite...OOW16 - Leverage Oracle Integration Cloud Service for Oracle E-Business Suite...
OOW16 - Leverage Oracle Integration Cloud Service for Oracle E-Business Suite...vasuballa
 

Similar to Web protocols for java developers (20)

Pitfalls of migrating projects to JDK 9
Pitfalls of migrating projects to JDK 9Pitfalls of migrating projects to JDK 9
Pitfalls of migrating projects to JDK 9
 
Push-button Composition of Oracle Application and Database Environments: Avi ...
Push-button Composition of Oracle Application and Database Environments: Avi ...Push-button Composition of Oracle Application and Database Environments: Avi ...
Push-button Composition of Oracle Application and Database Environments: Avi ...
 
Develop Oracle Virtual Box and deploy to Cloud
Develop Oracle Virtual Box and deploy to CloudDevelop Oracle Virtual Box and deploy to Cloud
Develop Oracle Virtual Box and deploy to Cloud
 
3° Sessione Oracle - CRUI: Mobile&Conversational Interface
3° Sessione Oracle - CRUI: Mobile&Conversational Interface3° Sessione Oracle - CRUI: Mobile&Conversational Interface
3° Sessione Oracle - CRUI: Mobile&Conversational Interface
 
MySQL as a Document Store
MySQL as a Document StoreMySQL as a Document Store
MySQL as a Document Store
 
Japanese Introduction to Oracle JET
Japanese Introduction to Oracle JETJapanese Introduction to Oracle JET
Japanese Introduction to Oracle JET
 
MySQL Group Replication
MySQL Group ReplicationMySQL Group Replication
MySQL Group Replication
 
Java EE Next - BeJUG JavaOne Afterglow 2016
Java EE Next - BeJUG JavaOne Afterglow 2016Java EE Next - BeJUG JavaOne Afterglow 2016
Java EE Next - BeJUG JavaOne Afterglow 2016
 
Oracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStackOracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStack
 
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
OOW16 - Oracle E-Business Suite Integration Best Practices [CON6709]
 
Next Generation Data Center Strategies
Next Generation Data Center StrategiesNext Generation Data Center Strategies
Next Generation Data Center Strategies
 
Java EE Next
Java EE NextJava EE Next
Java EE Next
 
Jfokus 2017 Oracle Dev Cloud and Containers
Jfokus 2017 Oracle Dev Cloud and ContainersJfokus 2017 Oracle Dev Cloud and Containers
Jfokus 2017 Oracle Dev Cloud and Containers
 
Oracle Solaris Build and Run Applications Better on 11.3
Oracle Solaris  Build and Run Applications Better on 11.3Oracle Solaris  Build and Run Applications Better on 11.3
Oracle Solaris Build and Run Applications Better on 11.3
 
MySQL Enterprise Cloud
MySQL Enterprise Cloud MySQL Enterprise Cloud
MySQL Enterprise Cloud
 
MySQL Enterprise Cloud
MySQL Enterprise CloudMySQL Enterprise Cloud
MySQL Enterprise Cloud
 
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
 
OOW16 - Leverage Oracle Integration Cloud Service for Oracle E-Business Suite...
OOW16 - Leverage Oracle Integration Cloud Service for Oracle E-Business Suite...OOW16 - Leverage Oracle Integration Cloud Service for Oracle E-Business Suite...
OOW16 - Leverage Oracle Integration Cloud Service for Oracle E-Business Suite...
 
MySQL Clusters
MySQL ClustersMySQL Clusters
MySQL Clusters
 
MySQL HA
MySQL HAMySQL HA
MySQL HA
 

Recently uploaded

Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 

Web protocols for java developers