<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Using JAX-RS (Jersey) to build a JPA/JAXB-backed JSON REST API</title>
	<atom:link href="http://www.javarants.com/2008/12/25/using-jax-rs-jersey-to-build-a-jpajaxb-backed-json-rest-api/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.javarants.com/2008/12/25/using-jax-rs-jersey-to-build-a-jpajaxb-backed-json-rest-api/</link>
	<description>Rants about Java and other internet technologies by Sam Pullara</description>
	<lastBuildDate>Mon, 08 Mar 2010 00:20:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jay @ work at home</title>
		<link>http://www.javarants.com/2008/12/25/using-jax-rs-jersey-to-build-a-jpajaxb-backed-json-rest-api/comment-page-1/#comment-1005</link>
		<dc:creator>Jay @ work at home</dc:creator>
		<pubDate>Sun, 27 Sep 2009 03:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.javarants.com/?p=926#comment-1005</guid>
		<description>Awesome tutorials you have here. I have just gotten my hands wet with JAX. I will save this as a preference. Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Awesome tutorials you have here. I have just gotten my hands wet with JAX. I will save this as a preference. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay @ work at home</title>
		<link>http://www.javarants.com/2008/12/25/using-jax-rs-jersey-to-build-a-jpajaxb-backed-json-rest-api/comment-page-1/#comment-986</link>
		<dc:creator>Jay @ work at home</dc:creator>
		<pubDate>Sat, 26 Sep 2009 20:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.javarants.com/?p=926#comment-986</guid>
		<description>Awesome tutorials you have here. I have just gotten my hands wet with JAX. I will save this as a preference. Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Awesome tutorials you have here. I have just gotten my hands wet with JAX. I will save this as a preference. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.javarants.com/2008/12/25/using-jax-rs-jersey-to-build-a-jpajaxb-backed-json-rest-api/comment-page-1/#comment-809</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 29 Dec 2008 09:06:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.javarants.com/?p=926#comment-809</guid>
		<description>Hi there,

Excellent write-up! I&#039;ve been looking to post one myself. I&#039;ve been using Jersey for some time now and I recently commented to a few colleagues how impressed I was as well. Not only is the implementation production quality, but quite honestly I find it to be a better &quot;MVC&quot; framework than any other I&#039;ve worked with. What boosts it above the rest is not only its built-in support for converting JAXB objects into json and/or xml, but it&#039;s relative ease and simplicity in the code itself. Not only do you get these benefits, but you get to brag about being truly REST compliant. I am still wondering when REST will become a w3c standard... primarily so that more support behind it&#039;s use to replace the much more complicated Web Services, SOAP, and other forms of communication can be stepped up in the community. For those that don&#039;t know, Jersey provides the same benefits you see in the above examples, for the client side. It is therefore even more of a joy to use because wrapping up a Java based SDK complete with working code to use your deployed REST services is a breeze! We&#039;ve done just that and believe me it&#039;s a Godsend. Having developers that want to use our REST API have already ready to use code that completely uses our full REST API is a major win for users of our API... there are those that would even prefer to use Ruby or Python that will end up using Java due to us providing a client side Java SDK for them already. Here&#039;s the kicker.. due to us writing a number of unit tests to test our server side REST.. we pretty much build the client side using Jersey for these tests.. and voila! With minor tweaks, our Java client side SDK is done.

Your post reminds me of how incredibly easy it is to get up and running with Jersey. I played with Restlets a bit.. and Jersey is by far easier to work with and honestly much faster to get up and running and handling MVC-like capabilities than any other MVC framework I&#039;ve worked with. Give it a try! I&#039;d be shocked if anyone with a wee-bit of WAR-like deployment knowledge takes more than an hour or so getting a simple app up and running.</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>Excellent write-up! I&#8217;ve been looking to post one myself. I&#8217;ve been using Jersey for some time now and I recently commented to a few colleagues how impressed I was as well. Not only is the implementation production quality, but quite honestly I find it to be a better &#8220;MVC&#8221; framework than any other I&#8217;ve worked with. What boosts it above the rest is not only its built-in support for converting JAXB objects into json and/or xml, but it&#8217;s relative ease and simplicity in the code itself. Not only do you get these benefits, but you get to brag about being truly REST compliant. I am still wondering when REST will become a w3c standard&#8230; primarily so that more support behind it&#8217;s use to replace the much more complicated Web Services, SOAP, and other forms of communication can be stepped up in the community. For those that don&#8217;t know, Jersey provides the same benefits you see in the above examples, for the client side. It is therefore even more of a joy to use because wrapping up a Java based SDK complete with working code to use your deployed REST services is a breeze! We&#8217;ve done just that and believe me it&#8217;s a Godsend. Having developers that want to use our REST API have already ready to use code that completely uses our full REST API is a major win for users of our API&#8230; there are those that would even prefer to use Ruby or Python that will end up using Java due to us providing a client side Java SDK for them already. Here&#8217;s the kicker.. due to us writing a number of unit tests to test our server side REST.. we pretty much build the client side using Jersey for these tests.. and voila! With minor tweaks, our Java client side SDK is done.</p>
<p>Your post reminds me of how incredibly easy it is to get up and running with Jersey. I played with Restlets a bit.. and Jersey is by far easier to work with and honestly much faster to get up and running and handling MVC-like capabilities than any other MVC framework I&#8217;ve worked with. Give it a try! I&#8217;d be shocked if anyone with a wee-bit of WAR-like deployment knowledge takes more than an hour or so getting a simple app up and running.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Shaw</title>
		<link>http://www.javarants.com/2008/12/25/using-jax-rs-jersey-to-build-a-jpajaxb-backed-json-rest-api/comment-page-1/#comment-808</link>
		<dc:creator>Daniel Shaw</dc:creator>
		<pubDate>Sun, 28 Dec 2008 22:49:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.javarants.com/?p=926#comment-808</guid>
		<description>Great post. I too have been keeping an eye on JAX-RS, but haven&#039;t tried to incorporate in any projects yet. Now, I&#039;m definitely going to now.

Cheers,
D.</description>
		<content:encoded><![CDATA[<p>Great post. I too have been keeping an eye on JAX-RS, but haven&#8217;t tried to incorporate in any projects yet. Now, I&#8217;m definitely going to now.</p>
<p>Cheers,<br />
D.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis Arias</title>
		<link>http://www.javarants.com/2008/12/25/using-jax-rs-jersey-to-build-a-jpajaxb-backed-json-rest-api/comment-page-1/#comment-804</link>
		<dc:creator>Luis Arias</dc:creator>
		<pubDate>Fri, 26 Dec 2008 10:30:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.javarants.com/?p=926#comment-804</guid>
		<description>Thanks for your post and insights on the JPA implementation.  I&#039;m on the same trajectory !

Luis</description>
		<content:encoded><![CDATA[<p>Thanks for your post and insights on the JPA implementation.  I&#8217;m on the same trajectory !</p>
<p>Luis</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger</title>
		<link>http://www.javarants.com/2008/12/25/using-jax-rs-jersey-to-build-a-jpajaxb-backed-json-rest-api/comment-page-1/#comment-803</link>
		<dc:creator>Roger</dc:creator>
		<pubDate>Fri, 26 Dec 2008 01:54:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.javarants.com/?p=926#comment-803</guid>
		<description>Awesome post, I&#039;ve been looking at Jersey for a while now but haven&#039;t had the chance to work with it yet, your post got me very excited, i might start using Jersey in one of my apps...

Best regards.</description>
		<content:encoded><![CDATA[<p>Awesome post, I&#8217;ve been looking at Jersey for a while now but haven&#8217;t had the chance to work with it yet, your post got me very excited, i might start using Jersey in one of my apps&#8230;</p>
<p>Best regards.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
