<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://united-coders.com"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>united-coders.com - Spring</title>
 <link>http://united-coders.com/taxonomy/term/107/0</link>
 <description></description>
 <language>en</language>
<item>
 <title>Developing a simple SOAP-webservice using Spring 3.0.1 and Apache CXF 2.2.6</title>
 <link>http://united-coders.com/phillip-steffensen/developing-a-simple-soap-webservice-using-spring-301-and-apache-cxf-226</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;In the past few years many techniques have been developed to help applications interact with each other. One of them are webservice-interfaces. These interfaces are extremly popular in the world of Java software development. One Framework that can be used to build such interfaces is &lt;a href=&quot;http://cxf.apache.org&quot;&gt;Apache CXF&lt;/a&gt;. Apache CXF delivers a toolset to develop interfaces using different protocols like XML/HTTP, RESTful HTTP, Corba and SOAP. In this article i&#039;d like to show how easy it could be to develop a simple SOAP-webservice based on Apache CXF 2.2.6 and the &lt;a href=&quot;http://www.springsource.org/download&quot;&gt;Spring Framework 3.0.1&lt;/a&gt;. You can &lt;a href=&quot;http://united-coders.com/sites/default/files/united-coders.com-CXFExample.tar_.bz2&quot; title=&quot;Download the full example&quot;&gt;download&lt;/a&gt; the full example at the bottom of this article.&lt;/p&gt;
&lt;p&gt;&lt;span class=&quot;read-more&quot;&gt;&lt;a href=&quot;/phillip-steffensen/developing-a-simple-soap-webservice-using-spring-301-and-apache-cxf-226&quot;&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:trackback=&quot;http://madskills.com/public/xml/rss/module/trackback/&quot;&gt;
&lt;rdf:Description rdf:about=&quot;http://united-coders.com/phillip-steffensen/developing-a-simple-soap-webservice-using-spring-301-and-apache-cxf-226&quot; dc:identifier=&quot;http://united-coders.com/phillip-steffensen/developing-a-simple-soap-webservice-using-spring-301-and-apache-cxf-226&quot; dc:title=&quot;Developing a simple SOAP-webservice using Spring 3.0.1 and Apache CXF 2.2.6&quot; trackback:ping=&quot;http://united-coders.com/trackback/53&quot; /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class=&#039;sexybookmarks-default-6371&#039;&gt;&lt;/div&gt;</description>
 <comments>http://united-coders.com/phillip-steffensen/developing-a-simple-soap-webservice-using-spring-301-and-apache-cxf-226#comments</comments>
 <category domain="http://united-coders.com/category/tags/apache">Apache</category>
 <category domain="http://united-coders.com/category/tags/cxf">CXF</category>
 <category domain="http://united-coders.com/category/tags/framework">Framework</category>
 <category domain="http://united-coders.com/category/tags/java">java</category>
 <category domain="http://united-coders.com/category/tags/maven-2">Maven 2</category>
 <category domain="http://united-coders.com/category/tags/maven-plugins">Maven Plugins</category>
 <category domain="http://united-coders.com/category/tags/open-source">Open Source</category>
 <category domain="http://united-coders.com/category/tags/spring">Spring</category>
 <category domain="http://united-coders.com/category/tags/tomcat">Tomcat</category>
 <category domain="http://united-coders.com/category/tags/tutorial">tutorial</category>
 <category domain="http://united-coders.com/category/tags/webservices">Webservices</category>
 <enclosure url="http://united-coders.com/sites/default/files/united-coders.com-CXFExample.tar_.bz2" length="2588" type="application/octet-stream" />
 <pubDate>Sat, 27 Feb 2010 12:22:16 +0000</pubDate>
 <dc:creator>Phillip Steffensen</dc:creator>
 <guid isPermaLink="false">53 at http://united-coders.com</guid>
</item>
<item>
 <title>Using an EntityManagerFactory with JPA, Hibernate and Wicket</title>
 <link>http://united-coders.com/nico-heid/using-an-entitymanagerfactory-with-jpa-hibernate-and-wicket</link>
 <description>&lt;p&gt;If you read the previous article  &quot;&lt;a href=&quot;http://united-coders.com/nico-heid/onetomany-relationship-with-java-hibernate-and-annotations&quot;&gt;@OneToMany Relationship with Java, Hibernate and Annotations&lt;/a&gt;&quot; you might have noticed some&lt;br /&gt;
imperfections in the persistence layer. On the code side we have been&lt;br /&gt;
lazy by just using &lt;span style=&quot;font-style: italic;&quot;&gt;FetchType.EAGER&lt;/span&gt;. This of course puts extra stress on&lt;br /&gt;
the database, because in our example, for each BlogPost all Comments are&lt;br /&gt;
fetched, even though they might not be displayed.&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Maybe you played around with the example&lt;br /&gt;
&lt;a href=&quot;http://github.com/nheid/yawblog/tree/v0.1.1&quot;&gt;version 0.1.1&lt;/a&gt;(download &lt;a href=&quot;http://github.com/nheid/yawblog/tarball/v0.1.1&quot;&gt;tarball&lt;/a&gt;).&lt;br /&gt;
You might have noticed that if you switch to &lt;span style=&quot;font-style: italic;&quot;&gt;FetchType.LAZY&lt;/span&gt; you will&lt;br /&gt;
most likely get a &lt;span style=&quot;font-style: italic;&quot;&gt;no session or session was closed&lt;/span&gt; on certain operations.&lt;br /&gt;&lt;span class=&quot;read-more&quot;&gt;&lt;a href=&quot;/nico-heid/using-an-entitymanagerfactory-with-jpa-hibernate-and-wicket&quot;&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:trackback=&quot;http://madskills.com/public/xml/rss/module/trackback/&quot;&gt;
&lt;rdf:Description rdf:about=&quot;http://united-coders.com/nico-heid/using-an-entitymanagerfactory-with-jpa-hibernate-and-wicket&quot; dc:identifier=&quot;http://united-coders.com/nico-heid/using-an-entitymanagerfactory-with-jpa-hibernate-and-wicket&quot; dc:title=&quot;Using an EntityManagerFactory with JPA, Hibernate and Wicket&quot; trackback:ping=&quot;http://united-coders.com/trackback/52&quot; /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class=&#039;sexybookmarks-default-5016&#039;&gt;&lt;/div&gt;</description>
 <comments>http://united-coders.com/nico-heid/using-an-entitymanagerfactory-with-jpa-hibernate-and-wicket#comments</comments>
 <category domain="http://united-coders.com/category/tags/hibernate">hibernate</category>
 <category domain="http://united-coders.com/category/tags/jpa">jpa</category>
 <category domain="http://united-coders.com/category/tags/spring">Spring</category>
 <category domain="http://united-coders.com/category/tags/wicket">wicket</category>
 <pubDate>Sun, 21 Feb 2010 16:32:18 +0000</pubDate>
 <dc:creator>Nico Heid</dc:creator>
 <guid isPermaLink="false">52 at http://united-coders.com</guid>
</item>
<item>
 <title>Spring Module OXM – A new feature of Spring Framework 3.0</title>
 <link>http://united-coders.com/phillip-steffensen/spring-module-oxm-a-new-feature-of-spring-framework-30</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;Since a few days Spring 3.0 is out. The frameworks core APIs (e.g. the BeanFactory) have been updated for Java 1.5. But there are also some &lt;a href=&quot;http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/new-in-3.html&quot;&gt;new features in Spring 3.0&lt;/a&gt;. Today I will take a look on Springs new OXM-feature and see how it can be used. Naturally all features added to the Spring framework are easy to use. Let&#039;s see if Springs simplicity still exists...&lt;/p&gt;
&lt;p&gt;&lt;span class=&quot;read-more&quot;&gt;&lt;a href=&quot;/phillip-steffensen/spring-module-oxm-a-new-feature-of-spring-framework-30&quot;&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:trackback=&quot;http://madskills.com/public/xml/rss/module/trackback/&quot;&gt;
&lt;rdf:Description rdf:about=&quot;http://united-coders.com/phillip-steffensen/spring-module-oxm-a-new-feature-of-spring-framework-30&quot; dc:identifier=&quot;http://united-coders.com/phillip-steffensen/spring-module-oxm-a-new-feature-of-spring-framework-30&quot; dc:title=&quot;Spring Module OXM – A new feature of Spring Framework 3.0&quot; trackback:ping=&quot;http://united-coders.com/trackback/45&quot; /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class=&#039;sexybookmarks-default-3219&#039;&gt;&lt;/div&gt;</description>
 <comments>http://united-coders.com/phillip-steffensen/spring-module-oxm-a-new-feature-of-spring-framework-30#comments</comments>
 <category domain="http://united-coders.com/category/tags/java">java</category>
 <category domain="http://united-coders.com/category/tags/mapping">Mapping</category>
 <category domain="http://united-coders.com/category/tags/oxm">OXM</category>
 <category domain="http://united-coders.com/category/tags/spring">Spring</category>
 <category domain="http://united-coders.com/category/tags/spring-30">Spring 3.0</category>
 <category domain="http://united-coders.com/category/tags/xml">XML</category>
 <enclosure url="http://united-coders.com/sites/default/files/SpringOxmExample.zip_.bz2" length="4657" type="application/octet-stream" />
 <pubDate>Tue, 29 Dec 2009 12:22:45 +0000</pubDate>
 <dc:creator>Phillip Steffensen</dc:creator>
 <guid isPermaLink="false">45 at http://united-coders.com</guid>
</item>
</channel>
</rss>


