-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
1,072 additions
and
341 deletions.
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
demos/demo-async-rest/demo-async-rest-webapp/src/main/webapp/demo.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
body | ||
{ | ||
font-family: Arial, Verdana, Helvetica, sans-serif; | ||
} | ||
|
||
.topnav | ||
{ | ||
overflow: hidden; | ||
padding: 10px; | ||
border: 1px solid #f6815c; | ||
border-radius: 10px; | ||
text-align: right; | ||
} | ||
|
||
.menu | ||
{ | ||
margin-left: 3em; | ||
} | ||
|
||
.content | ||
{ | ||
padding: 10px; | ||
} | ||
.footer | ||
{ | ||
padding: 10px; | ||
border-radius: 10px; | ||
border: 1px solid #f6815c; | ||
} | ||
|
||
.test | ||
{ | ||
background-color: #0099cc; | ||
color: white; | ||
padding: 10px 15px; | ||
border: none; | ||
font-size: 12pt; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 3px 10px 0 rgba(0,0,0,0.19); | ||
} | ||
|
||
.test:hover | ||
{ | ||
background-color: #f6815c; | ||
color: white; | ||
} | ||
|
||
|
||
A:link | ||
{ | ||
color: #0099cc; | ||
text-decoration: none; | ||
font-weight: normal; | ||
font-size: 11pt; | ||
font-family:sans-serif; | ||
} | ||
A:visited | ||
{ | ||
color: #0099cc; | ||
text-decoration: none; | ||
font-weight: normal; | ||
font-size: 11pt; | ||
font-family:sans-serif; | ||
} | ||
|
||
A:hover | ||
{ | ||
color: #ff6600; | ||
text-decoration: none; | ||
font-weight: normal; | ||
font-size: 11pt; | ||
font-family:sans-serif; | ||
} | ||
|
||
A:active | ||
{ | ||
color: #0099cc; | ||
text-decoration: none; | ||
font-weight: normal; | ||
font-size: 11pt; | ||
font-family:sans-serif; | ||
} |
76 changes: 47 additions & 29 deletions
76
demos/demo-async-rest/demo-async-rest-webapp/src/main/webapp/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,62 @@ | ||
<html> | ||
<head> | ||
<link rel="stylesheet" href="demo.css"/> | ||
<style type='text/css'> | ||
iframe {border: 0px} | ||
table, tr, td {border: 0px} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Blocking vs Asynchronous REST</h1> | ||
<p> | ||
This demo calls the EBay WS API both synchronously and asynchronously, | ||
to obtain items matching each of the keywords passed on the query | ||
string. The time the request thread is held by the servlet is displayed in red for both. | ||
</p> | ||
<div class="topnav"> | ||
<a class="menu" href="http://localhost:8080/">Demo Home</a> | ||
<a class="menu" href="https://github.com/eclipse/jetty.project/tree/jetty-10.0.x/demos/demo-async-rest">Source</a> | ||
<a class="menu" href="https://www.eclipse.org/jetty/">Jetty Project Home</a> | ||
<a class="menu" href="https://www.eclipse.org/jetty/documentation/current/">Documentation</a> | ||
<a class="menu" href="https://webtide.com">Commercial Support</a> | ||
</div> | ||
|
||
<table width='100%'> | ||
<div class="content"> | ||
<center> | ||
<span style="color:red; font-style:italic; font-weight:bold">Demo Web Application Only - Do NOT Deploy in Production</span> | ||
</center> | ||
|
||
|
||
<h1>Blocking vs Asynchronous REST</h1> | ||
<p> | ||
This demo calls the EBay WS API both synchronously and asynchronously, to obtain items matching each of the keywords passed on the query string. The time the request thread is held by the servlet is displayed in red for both. | ||
</p> | ||
|
||
<table width='100%'> | ||
|
||
<tr> | ||
<td> | ||
<iframe id="f1" width='100%' height='175px' src="testSerial?items=kayak"></iframe> | ||
</td> | ||
<td> | ||
<iframe id="f3" width='100%' height='175px' src="testSerial?items=mouse,beer,gnome"></iframe> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<iframe id="f1" width='100%' height='175px' src="testSerial?items=kayak"></iframe> | ||
</td> | ||
<td> | ||
<iframe id="f3" width='100%' height='175px' src="testSerial?items=mouse,beer,gnome"></iframe> | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td> | ||
<iframe id="f2" width='100%' height='175px' src="testAsync?items=kayak"/></iframe> | ||
</td> | ||
<td> | ||
<iframe id="f4" width='100%' height='175px' src="testAsync?items=mouse,beer,gnome"/></iframe> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<iframe id="f2" width='100%' height='175px' src="testAsync?items=kayak"/></iframe> | ||
</td> | ||
<td> | ||
<iframe id="f4" width='100%' height='175px' src="testAsync?items=mouse,beer,gnome"/></iframe> | ||
</td> | ||
</tr> | ||
|
||
</table> | ||
<p> | ||
By the use of Asynchronous Servlets and the Jetty Asynchronous client, the server is able to release the thread (green) while waiting for the response from Ebay. This thread goes back into the thread pool and can service many other requests during the wait. This greatly reduces the number of threads needed, which in turn greatly reduces the memory requirements of the server. | ||
</p> | ||
<p> | ||
Press your browser's reload button to see even better results after JIT and TCP/IP warmup! | ||
</p> | ||
|
||
</table> | ||
By the use of Asynchronous Servlets and the Jetty Asynchronous client, the server is able to release the thread (green) while | ||
waiting for the response from Ebay. This thread goes back into the thread pool and can service many other requests during the wait. | ||
This greatly reduces the number of threads needed, which in turn greatly reduces the memory requirements of the server. | ||
<p> | ||
Press reload to see even better results after JIT and TCP/IP warmup! | ||
<div class="footer"> | ||
<center><a href="https://www.eclipse.org/jetty"><img style="border:0" src="small_powered_by.gif"/></a></center> | ||
</div> | ||
|
||
</body> | ||
</html> |
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
<html> | ||
<head> | ||
<title>Authentication Failure</title> | ||
<link rel="stylesheet" type="text/css" href="stylesheet.css"/> | ||
</head> | ||
<body> | ||
<h1>Authentication Failure</h1> | ||
<p>Sorry, either your login or password were incorrect, please try again.</p> | ||
<a href="auth.html">Login</a> | ||
<a href="auth.html">LOGIN</a> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
body | ||
{ | ||
font-family: Arial, Verdana, Helvetica, sans-serif; | ||
} | ||
|
||
.topnav | ||
{ | ||
overflow: hidden; | ||
padding: 10px; | ||
border: 1px solid #f6815c; | ||
border-radius: 10px; | ||
text-align: right; | ||
} | ||
|
||
.menu | ||
{ | ||
margin-left: 3em; | ||
} | ||
|
||
.content | ||
{ | ||
padding: 10px; | ||
} | ||
.footer | ||
{ | ||
padding: 10px; | ||
border-radius: 10px; | ||
border: 1px solid #f6815c; | ||
} | ||
|
||
.test | ||
{ | ||
background-color: #0099cc; | ||
color: white; | ||
padding: 10px 15px; | ||
border: none; | ||
font-size: 12pt; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 3px 10px 0 rgba(0,0,0,0.19); | ||
} | ||
|
||
.test:hover | ||
{ | ||
background-color: #f6815c; | ||
color: white; | ||
} | ||
|
||
|
||
A:link | ||
{ | ||
color: #0099cc; | ||
text-decoration: none; | ||
font-weight: normal; | ||
font-size: 11pt; | ||
font-family:sans-serif; | ||
} | ||
A:visited | ||
{ | ||
color: #0099cc; | ||
text-decoration: none; | ||
font-weight: normal; | ||
font-size: 11pt; | ||
font-family:sans-serif; | ||
} | ||
|
||
A:hover | ||
{ | ||
color: #ff6600; | ||
text-decoration: none; | ||
font-weight: normal; | ||
font-size: 11pt; | ||
font-family:sans-serif; | ||
} | ||
|
||
A:active | ||
{ | ||
color: #0099cc; | ||
text-decoration: none; | ||
font-weight: normal; | ||
font-size: 11pt; | ||
font-family:sans-serif; | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.