<?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: Getting Started with EJB 3.0 Persistence out-of-container using the Reference Implementation (GlassFish)</title>
	<atom:link href="http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish</link>
	<description></description>
	<lastBuildDate>Tue, 11 Jun 2013 22:09:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: tibet tour</title>
		<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/#comment-2723</link>
		<dc:creator>tibet tour</dc:creator>
		<pubDate>Tue, 24 Feb 2009 02:20:31 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=962#comment-2723</guid>
		<description><![CDATA[Thank you for a very good read your article so I know a lot of]]></description>
		<content:encoded><![CDATA[<p>Thank you for a very good read your article so I know a lot of</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Matlack</title>
		<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/#comment-2722</link>
		<dc:creator>Brad Matlack</dc:creator>
		<pubDate>Tue, 24 Apr 2007 01:22:22 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=962#comment-2722</guid>
		<description><![CDATA[This works for hibernate too:
&lt;code&gt;
&lt;persistence xmlns=&quot;http://java.sun.com/xml/ns/persistence&quot; version=&quot;1.0&quot;&gt;
&#160; &lt;persistence-unit name=&quot;pu1&quot; transaction-type=&quot;RESOURCE_LOCAL&quot;&gt;
&#160; &lt;provider&gt;org.hibernate.ejb.HibernatePersistence&lt;/provider&gt;
&#160; &lt;class&gt;nl.amis.ejb30.hrm.Department&lt;/class&gt;
&#160; &lt;class&gt;nl.amis.ejb30.hrm.Employee&lt;/class&gt;
&#160; &lt;properties&gt;
&#160;&#160;&#160; &lt;property name=&quot;hibernate.dialect&quot; value=&quot;org.hibernate.dialect.HSQLDialect&quot;/&gt;
&#160;&#160;&#160; &lt;property name=&quot;hibernate.connection.driver_class&quot; value=&quot;org.hsqldb.jdbcDriver&quot;/&gt;
&#160;&#160;&#160; &lt;property name=&quot;hibernate.connection.username&quot; value=&quot;sa&quot;/&gt;
&#160;&#160;&#160; &lt;property name=&quot;hibernate.connection.password&quot;
value=&quot;password&quot;/&gt;
&#160;&#160;&#160; &lt;property name=&quot;hibernate.connection.url&quot; value=&quot;jdbc:hsqldb:hsql://localhost&quot;
/&gt;
&#160;&#160;&#160; &lt;property name=&quot;hibernate.max_fetch_depth&quot; value=&quot;3&quot;/&gt;
&#160;&#160;&#160; &lt;property name=&quot;hibernate.show_sql&quot; value=&quot;true&quot; /&gt;
&#160;&#160;&#160; &lt;property name=&quot;hibernate.hbm2ddl.auto&quot; value=&quot;create&quot;/&gt;
&#160; &lt;/properties&gt;
&lt;/persistence-unit&gt;
&lt;/persistence&gt;
&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>This works for hibernate too:<br />
<code><br />
&lt;persistence xmlns=&quot;<a href="http://java.sun.com/xml/ns/persistence&#038;quot" rel="nofollow">http://java.sun.com/xml/ns/persistence&#038;quot</a>; version=&quot;1.0&quot;&gt;<br />
&nbsp; &lt;persistence-unit name=&quot;pu1&quot; transaction-type=&quot;RESOURCE_LOCAL&quot;&gt;<br />
&nbsp; &lt;provider&gt;org.hibernate.ejb.HibernatePersistence&lt;/provider&gt;<br />
&nbsp; &lt;class&gt;nl.amis.ejb30.hrm.Department&lt;/class&gt;<br />
&nbsp; &lt;class&gt;nl.amis.ejb30.hrm.Employee&lt;/class&gt;<br />
&nbsp; &lt;properties&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;property name=&quot;hibernate.dialect&quot; value=&quot;org.hibernate.dialect.HSQLDialect&quot;/&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;property name=&quot;hibernate.connection.driver_class&quot; value=&quot;org.hsqldb.jdbcDriver&quot;/&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;property name=&quot;hibernate.connection.username&quot; value=&quot;sa&quot;/&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;property name=&quot;hibernate.connection.password&quot;<br />
value=&quot;password&quot;/&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;property name=&quot;hibernate.connection.url&quot; value=&quot;jdbc:hsqldb:hsql://localhost&quot;<br />
/&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;property name=&quot;hibernate.max_fetch_depth&quot; value=&quot;3&quot;/&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;property name=&quot;hibernate.show_sql&quot; value=&quot;true&quot; /&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;property name=&quot;hibernate.hbm2ddl.auto&quot; value=&quot;create&quot;/&gt;<br />
&nbsp; &lt;/properties&gt;<br />
&lt;/persistence-unit&gt;<br />
&lt;/persistence&gt;<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Matlack</title>
		<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/#comment-2721</link>
		<dc:creator>Brad Matlack</dc:creator>
		<pubDate>Tue, 24 Apr 2007 01:15:33 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=962#comment-2721</guid>
		<description><![CDATA[Great bootstrap for getting started with EJB3! I got this to work with Hibernate using the following persistence.xml:


    org.hibernate.ejb.HibernatePersistence
      nl.amis.ejb30.hrm.Department
      nl.amis.ejb30.hrm.Employee]]></description>
		<content:encoded><![CDATA[<p>Great bootstrap for getting started with EJB3! I got this to work with Hibernate using the following persistence.xml:</p>
<p>    org.hibernate.ejb.HibernatePersistence<br />
      nl.amis.ejb30.hrm.Department<br />
      nl.amis.ejb30.hrm.Employee</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wouter van Reeven</title>
		<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/#comment-2720</link>
		<dc:creator>Wouter van Reeven</dc:creator>
		<pubDate>Fri, 20 Jan 2006 15:22:07 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=962#comment-2720</guid>
		<description><![CDATA[Hi Lucas,


While installing glassfish on my laptop I also noticed port 8080 was in use. Using the cygwin toolset I found that it was the Oracle 9i TNS Listener using that port. Thought you, and possibly others, might want to know.


Greets, Wouter]]></description>
		<content:encoded><![CDATA[<p>Hi Lucas,</p>
<p>While installing glassfish on my laptop I also noticed port 8080 was in use. Using the cygwin toolset I found that it was the Oracle 9i TNS Listener using that port. Thought you, and possibly others, might want to know.</p>
<p>Greets, Wouter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Peh</title>
		<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/#comment-2719</link>
		<dc:creator>Steven Peh</dc:creator>
		<pubDate>Wed, 11 Jan 2006 07:30:02 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=962#comment-2719</guid>
		<description><![CDATA[Just something obvious, but useful for beginners, I&#039;ve also tested the tutorial on
Oracle but without needing all the jars in C:\jdev10_1_3_EA1\jdbc\lib\.  Actually
I dont even have JDeveloper, all I added to the classpath was the
ojdbc14.zip file and it worked.]]></description>
		<content:encoded><![CDATA[<p>Just something obvious, but useful for beginners, I&#8217;ve also tested the tutorial on<br />
Oracle but without needing all the jars in C:\jdev10_1_3_EA1\jdbc\lib\.  Actually<br />
I dont even have JDeveloper, all I added to the classpath was the<br />
ojdbc14.zip file and it worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/#comment-2718</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Sat, 07 Jan 2006 06:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=962#comment-2718</guid>
		<description><![CDATA[And another one, introducing EJB QL in EJB 3.0: &lt;a&gt;EJB 3.0 Persistence - Introducing EJBQL 3.0&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>And another one, introducing EJB QL in EJB 3.0: <a>EJB 3.0 Persistence &#8211; Introducing EJBQL 3.0</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/#comment-2717</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Tue, 03 Jan 2006 07:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=962#comment-2717</guid>
		<description><![CDATA[I have just published another article on EJB 3.0 Persistence, more specifically the @Version annotation.
&lt;a href=&quot;http://technology.amis.nl/blog/?p=977&quot; rel=&quot;nofollow&quot;&gt;EJB 3.0 Persistence - using the @Version annotation for Optimistic Locking - in the GlassFish Reference Implementation&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>I have just published another article on EJB 3.0 Persistence, more specifically the @Version annotation.<br />
<a href="http://technology.amis.nl/blog/?p=977" rel="nofollow">EJB 3.0 Persistence &#8211; using the @Version annotation for Optimistic Locking &#8211; in the GlassFish Reference Implementation</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/#comment-2716</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Mon, 02 Jan 2006 07:58:11 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=962#comment-2716</guid>
		<description><![CDATA[Just got a plug on the homepage of Oracle Technology Network:
&lt;i&gt;&quot;Getting Started with EJB 3.0 Using GlassFish Oracle ACE Lucas Jellema gets EJB 3.0 persistence up and running in less than two hours.&quot; &lt;/i&gt;.]]></description>
		<content:encoded><![CDATA[<p>Just got a plug on the homepage of Oracle Technology Network:<br />
<i>&#8220;Getting Started with EJB 3.0 Using GlassFish Oracle ACE Lucas Jellema gets EJB 3.0 persistence up and running in less than two hours.&#8221; </i>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/#comment-2715</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Mon, 02 Jan 2006 07:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=962#comment-2715</guid>
		<description><![CDATA[And the third episode one Many To Many relations: &lt;a href=&quot;http://technology.amis.nl/blog/?p=972&quot; rel=&quot;nofollow&quot;&gt;EJB 3.0 Persistence - ManyToMany relations or the objectification of the intersection table&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>And the third episode one Many To Many relations: <a href="http://technology.amis.nl/blog/?p=972" rel="nofollow">EJB 3.0 Persistence &#8211; ManyToMany relations or the objectification of the intersection table</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2005/12/26/getting-started-with-ejb-30-persistence-out-of-container-using-the-reference-implementation-glassfish/#comment-2714</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Sun, 01 Jan 2006 07:18:25 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=962#comment-2714</guid>
		<description><![CDATA[See the next installment on EJB 3.0 - Starting with Relations: Diving deeper into EJB 3.0 Persistence with &lt;a href=&quot;http://technology.amis.nl/blog/?p=971&quot; rel=&quot;nofollow&quot;&gt;GlassFish (RI) - still out of container&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>See the next installment on EJB 3.0 &#8211; Starting with Relations: Diving deeper into EJB 3.0 Persistence with <a href="http://technology.amis.nl/blog/?p=971" rel="nofollow">GlassFish (RI) &#8211; still out of container</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
