<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Java Code Geeks &#187; Jerome Versrynge</title> <atom:link href="http://www.javacodegeeks.com/author/Jerome-Versrynge/feed" rel="self" type="application/rss+xml" /><link>http://www.javacodegeeks.com</link> <description>Java 2 Java Developers Resource Center</description> <lastBuildDate>Fri, 24 May 2013 13:00:38 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.5.1</generator> <item><title>Spring JpaRepository Example (In-Memory)</title><link>http://www.javacodegeeks.com/2013/04/spring-jparepository-example-in-memory.html</link> <comments>http://www.javacodegeeks.com/2013/04/spring-jparepository-example-in-memory.html#comments</comments> <pubDate>Tue, 16 Apr 2013 16:00:38 +0000</pubDate> <dc:creator>Jerome Versrynge</dc:creator> <category><![CDATA[Enterprise Java]]></category> <category><![CDATA[Spring]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=11295</guid> <description><![CDATA[This post describes a simple Spring JpaRepository example using an in memory HSQL database. The code example is available from GitHub in the Spring-JpaRepository directory. It is based on the Spring-MVC-With-Annotations example and information available here. JPA Repository We implement a dummy bean for this example: &#160; &#160; &#160; @Entity @AutoProperty public class SomeItem { [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2013/04/spring-jparepository-example-in-memory.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Spring MVC Form Validation (With Annotations)</title><link>http://www.javacodegeeks.com/2013/04/spring-mvc-form-validation-with-annotations-2.html</link> <comments>http://www.javacodegeeks.com/2013/04/spring-mvc-form-validation-with-annotations-2.html#comments</comments> <pubDate>Thu, 04 Apr 2013 07:00:46 +0000</pubDate> <dc:creator>Jerome Versrynge</dc:creator> <category><![CDATA[Enterprise Java]]></category> <category><![CDATA[Spring]]></category> <category><![CDATA[Spring MVC]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=2687</guid> <description><![CDATA[This post provides a simple example of a HTML form validation. It is based on the Spring MVC With Annotations example. The code is available on GitHub in the Spring-MVC-Form-Validation directory. &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; Data For this example we will use a bean and JSR303 validation annotations: public class MyUser { @NotNull @Size(min=1,max=20) private [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2013/04/spring-mvc-form-validation-with-annotations-2.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Introduction To JavaEE Concepts</title><link>http://www.javacodegeeks.com/2013/02/introduction-to-javaee-concepts.html</link> <comments>http://www.javacodegeeks.com/2013/02/introduction-to-javaee-concepts.html#comments</comments> <pubDate>Mon, 11 Feb 2013 11:00:58 +0000</pubDate> <dc:creator>Jerome Versrynge</dc:creator> <category><![CDATA[Enterprise Java]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=8389</guid> <description><![CDATA[This post aims at clarifying acronyms and concepts used in the J2EE paradigm. J2EE stands for Java to Platform, Entreprise Edition. It enables the creation of modular Java applications to be deployed on application servers. It relies on Java SE, a core set of Java libraries upon which all Java applications are implemented. General Concepts [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2013/02/introduction-to-javaee-concepts.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>What Is JNDI, SPI, CCI, LDAP And JCA?</title><link>http://www.javacodegeeks.com/2013/02/what-is-jndi-spi-cci-ldap-and-jca.html</link> <comments>http://www.javacodegeeks.com/2013/02/what-is-jndi-spi-cci-ldap-and-jca.html#comments</comments> <pubDate>Fri, 01 Feb 2013 08:00:04 +0000</pubDate> <dc:creator>Jerome Versrynge</dc:creator> <category><![CDATA[Enterprise Java]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=7919</guid> <description><![CDATA[JNDI stands for Java Naming and Directory Interface. It is an API to providing access to a directory service, that is, a service mapping name (strings) with objects, reference to remote objects or simple data. This is called binding. The set of bindings is called the context. Applications use the JNDI interface to access resources. [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2013/02/what-is-jndi-spi-cci-ldap-and-jca.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Spring Selenium Tests With Annotations</title><link>http://www.javacodegeeks.com/2013/01/spring-selenium-tests-with-annotations.html</link> <comments>http://www.javacodegeeks.com/2013/01/spring-selenium-tests-with-annotations.html#comments</comments> <pubDate>Thu, 10 Jan 2013 11:00:03 +0000</pubDate> <dc:creator>Jerome Versrynge</dc:creator> <category><![CDATA[Enterprise Java]]></category> <category><![CDATA[Selenium]]></category> <category><![CDATA[Testing]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=6761</guid> <description><![CDATA[This post describes how to implement Selenium tests in Java. It is inspired from the post by Alex Collins, with annotations. The code is available on GitHub in the Spring-Selenium-Test directory. Some alternative and much lighter techniques are available to unit test a Spring MVC application. To unit test services, see here. &#160; &#160; &#160; [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2013/01/spring-selenium-tests-with-annotations.html/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Introduction To Git Concepts</title><link>http://www.javacodegeeks.com/2012/11/introduction-to-git-concepts.html</link> <comments>http://www.javacodegeeks.com/2012/11/introduction-to-git-concepts.html#comments</comments> <pubDate>Mon, 26 Nov 2012 08:00:29 +0000</pubDate> <dc:creator>Jerome Versrynge</dc:creator> <category><![CDATA[Software Development]]></category> <category><![CDATA[Git]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=3621</guid> <description><![CDATA[This post is an introduction/reminder to Git concepts. It aims at facilitating the learning curve for those coming from a Subversion (or other) background. For more details, there is nothing like the official book. Concepts Git operates on repositories which contain a local database of files and corresponding file revisions. Repositories contain files which can have 3 [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/introduction-to-git-concepts.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Introduction To Extreme Programming (XP)</title><link>http://www.javacodegeeks.com/2012/11/introduction-to-extreme-programming-xp.html</link> <comments>http://www.javacodegeeks.com/2012/11/introduction-to-extreme-programming-xp.html#comments</comments> <pubDate>Fri, 23 Nov 2012 11:00:29 +0000</pubDate> <dc:creator>Jerome Versrynge</dc:creator> <category><![CDATA[Agile]]></category> <category><![CDATA[XP]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=3556</guid> <description><![CDATA[This post is an introduction to Extreme Programming (XP), another of the Agile methods for software application implementation. Reading this post is a prerequisite to this post. The underlying philosophy of Extreme Programming is to take the best elements of software engineering and bring them to an &#8216;extreme&#8217; level. If a little is good, more will necessarily [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/introduction-to-extreme-programming-xp.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Introduction To Scrum</title><link>http://www.javacodegeeks.com/2012/11/introduction-to-scrum.html</link> <comments>http://www.javacodegeeks.com/2012/11/introduction-to-scrum.html#comments</comments> <pubDate>Thu, 22 Nov 2012 11:00:10 +0000</pubDate> <dc:creator>Jerome Versrynge</dc:creator> <category><![CDATA[Agile]]></category> <category><![CDATA[ScrumAlliance Scrum]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=3506</guid> <description><![CDATA[This post is an introduction to Scrum, one of the Agile methods to drive software application implementation. Reading this post is a prerequisite to this post. Concepts Scrum projects deliver software application features iteratively. Each iteration is called a sprint. Scrum projects have 4 stages: Planning &#8211; Definition of the vision, budget, and expectations. The first version [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/introduction-to-scrum.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Introduction To Agile Principles</title><link>http://www.javacodegeeks.com/2012/11/introduction-to-agile-principles.html</link> <comments>http://www.javacodegeeks.com/2012/11/introduction-to-agile-principles.html#comments</comments> <pubDate>Thu, 22 Nov 2012 08:00:52 +0000</pubDate> <dc:creator>Jerome Versrynge</dc:creator> <category><![CDATA[Agile]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=3500</guid> <description><![CDATA[This post is a reminder about Agile principles. It is also an introduction for those who want to learn about it. The Agile principles were initially proposed in 2001 in the Manifesto for Agile Software Development which defines 4 values and 12 principles. Several project implementations methods were already available then, but many found these inflexible, [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/introduction-to-agile-principles.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Trunk, Branch, Tag And Related Concepts</title><link>http://www.javacodegeeks.com/2012/11/trunk-branch-tag-and-related-concepts.html</link> <comments>http://www.javacodegeeks.com/2012/11/trunk-branch-tag-and-related-concepts.html#comments</comments> <pubDate>Tue, 13 Nov 2012 14:00:26 +0000</pubDate> <dc:creator>Jerome Versrynge</dc:creator> <category><![CDATA[Software Development]]></category> <category><![CDATA[Repository]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=3196</guid> <description><![CDATA[Trunk, Branch and Tag concepts are relevant to revision control (or version control) systems. These systems are typically implemented as repositories containing electronic documents, and changes to these documents. Each set of changes to the documents is marked with a revision (or version) number. These numbers identify each set of modifications uniquely. Reminder A version control system, like Subversion, works with [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/trunk-branch-tag-and-related-concepts.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/4 queries in 0.001 seconds using apc
Object Caching 1110/1111 objects using apc
Content Delivery Network via jcg.javacodegeeks.netdna-cdn.com

Served from: www.javacodegeeks.com @ 2013-05-24 17:32:43 -->