Submitted by heartin on Fri, 11/20/2015 - 04:54
Submitted by heartin on Fri, 11/20/2015 - 02:47
Jersey is a popular JAX-RS implementation.
Jersey is the open source, production quality, JAX-RS (JSR 311) Reference Implementation for building RESTful Web services.
In addition to being the Reference Implementation, Jersey also provides an API so that developers may extend Jersey to suit their needs.
You can download JAX-RS from Jersy Homepage at jersey.java.net. You can also set it up using a build tool such a maven.
Submitted by heartin on Fri, 11/20/2015 - 02:41
Java API for XML – Restful web services (JAX–RS) is the standard specification for developing REST web services.
JAX-RS uses annotations to simplify the development and deployment of web service clients and endpoints. Important JAX-RS annotations can be used @ http://javajee.com/important-jax-rs-annotations.
Submitted by heartin on Fri, 11/13/2015 - 03:05
A Queue is a first in first out (FIFO) data structure, as we have already seen.
BlockingQueue is a queue that additionally supports operations that wait for the queue to become non-empty when retrieving an element, and wait for space to become available in the queue when storing an element.
BlockingQueue methods come in four forms:
-
those that throws an exception,
Submitted by heartin on Thu, 11/12/2015 - 23:45
Problem
Create three threads
-
one that print '1' for 5 times.
-
one that print '2' for 5 times.
-
one that print '3' for 5 times.
Need to implement coordination between them so that 1, 2 and 3 should be printed in order from the three threads:
1
2
3
1
2
3
...
Hint: The order should be same theoretically and practically. Putting a sleep while printing might work in some cases, but it cannot be guaranteed always.
Pages