<?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; Zemian Deng</title> <atom:link href="http://www.javacodegeeks.com/author/Zemian-Deng/feed" rel="self" type="application/rss+xml" /><link>http://www.javacodegeeks.com</link> <description>Java 2 Java Developers Resource Center</description> <lastBuildDate>Sat, 25 May 2013 12:00:42 +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>A simple Groovy issue tracker using file system</title><link>http://www.javacodegeeks.com/2012/12/a-simple-groovy-issue-tracker-using-file-system.html</link> <comments>http://www.javacodegeeks.com/2012/12/a-simple-groovy-issue-tracker-using-file-system.html#comments</comments> <pubDate>Mon, 24 Dec 2012 11:00:02 +0000</pubDate> <dc:creator>Zemian Deng</dc:creator> <category><![CDATA[Groovy]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=6041</guid> <description><![CDATA[It will be a chaos not to track bugs and feature requests when you developing software. Having a simple issue tracker would make managing the project much more successful. Now I like simple stuff, and I think for small project, having this tracker right inside the source control (especially with DSVC like Mercurial/Git etc) repository [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/12/a-simple-groovy-issue-tracker-using-file-system.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Getting started with Quartz Scheduler on MySQL database</title><link>http://www.javacodegeeks.com/2012/12/getting-started-with-quartz-scheduler-on-mysql-database.html</link> <comments>http://www.javacodegeeks.com/2012/12/getting-started-with-quartz-scheduler-on-mysql-database.html#comments</comments> <pubDate>Tue, 18 Dec 2012 17:00:48 +0000</pubDate> <dc:creator>Zemian Deng</dc:creator> <category><![CDATA[Enterprise Java]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[Quartz]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=5799</guid> <description><![CDATA[Here are some simple steps to get you fully started with Quartz Scheduler on MySQL database using Groovy. The script below will allow you to quickly experiment different Quartz configuration settings using an external file. &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; First step is to setup the database with tables. Assuming you [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/12/getting-started-with-quartz-scheduler-on-mysql-database.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>A very light Groovy based web application project template</title><link>http://www.javacodegeeks.com/2012/12/a-very-light-groovy-based-web-application-project-template.html</link> <comments>http://www.javacodegeeks.com/2012/12/a-very-light-groovy-based-web-application-project-template.html#comments</comments> <pubDate>Tue, 04 Dec 2012 11:00:44 +0000</pubDate> <dc:creator>Zemian Deng</dc:creator> <category><![CDATA[Groovy]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=4350</guid> <description><![CDATA[A very light Groovy based web application project template You might have heard of the project Grails is a Groovy version of Ruby on Rails like framework that let you create web application much more easier with Dynamic scripting. Despite all that power Grails provided, it is not &#8216;light&#8217; if you look under the hood. [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/12/a-very-light-groovy-based-web-application-project-template.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Quartz 2: Exploring different scheduling types</title><link>http://www.javacodegeeks.com/2012/10/quartz-2-exploring-different-scheduling-types.html</link> <comments>http://www.javacodegeeks.com/2012/10/quartz-2-exploring-different-scheduling-types.html#comments</comments> <pubDate>Thu, 25 Oct 2012 13:19:04 +0000</pubDate> <dc:creator>Zemian Deng</dc:creator> <category><![CDATA[Groovy]]></category> <category><![CDATA[Quartz]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=2350</guid> <description><![CDATA[We often think of Cron when we want to schedule a job. Cron is very flexible in expressing an repeating occurance of an event/job in a very compact expression. However it&#8217;s not answer for everything, as I often see people are asking for help in the Quartz user forum. Did you know that the popular [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/10/quartz-2-exploring-different-scheduling-types.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Enhancing Spring Test Framework with beforeClass and afterClass setup</title><link>http://www.javacodegeeks.com/2012/10/enhancing-spring-test-framework-with.html</link> <comments>http://www.javacodegeeks.com/2012/10/enhancing-spring-test-framework-with.html#comments</comments> <pubDate>Tue, 02 Oct 2012 22:00:00 +0000</pubDate> <dc:creator>Zemian Deng</dc:creator> <category><![CDATA[Enterprise Java]]></category> <category><![CDATA[JUnit]]></category> <category><![CDATA[Spring]]></category> <category><![CDATA[Testing]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/enhancing-spring-test-framework-with-beforeclass-and-afterclass-setup.html</guid> <description><![CDATA[How to allow instance methods to run as JUnit BeforeClass behavior JUnit allows you to setup methods on the class level once before and after all tests methods invocation. However, by design on purpose that they restrict this to only static methods using @BeforeClass and @AfterClass annotations. For example this simple demo shows the typical [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/10/enhancing-spring-test-framework-with.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Camel: Build a message based application</title><link>http://www.javacodegeeks.com/2012/09/camel-build-message-based-application.html</link> <comments>http://www.javacodegeeks.com/2012/09/camel-build-message-based-application.html#comments</comments> <pubDate>Wed, 19 Sep 2012 01:00:00 +0000</pubDate> <dc:creator>Zemian Deng</dc:creator> <category><![CDATA[Enterprise Java]]></category> <category><![CDATA[Apache Camel]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/camel-build-a-message-based-application.html</guid> <description><![CDATA[This is a long article that contains three separate topics: Getting started with Apache Camel with Java Improving startup of routes with a CamelRunner Building message based application using Camel But since I&#8217;ve prepared a camel-demo-1.0.0-SNAPSHOT-project.zip that has all these materials included, I thought it would easier to combine them and present it as whole. [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/09/camel-build-message-based-application.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to write better POJO Services</title><link>http://www.javacodegeeks.com/2012/09/how-to-write-better-pojo-services.html</link> <comments>http://www.javacodegeeks.com/2012/09/how-to-write-better-pojo-services.html#comments</comments> <pubDate>Mon, 03 Sep 2012 19:00:00 +0000</pubDate> <dc:creator>Zemian Deng</dc:creator> <category><![CDATA[Enterprise Java]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/how-to-write-better-pojo-services.html</guid> <description><![CDATA[In Java, you can easily implements some business logic in a Plain Old Java Object (POJO) classes, and you can run them in a fancy server or framework without much hassle. There many server/frameworks, such as JBossAS, Spring or Camel etc, that would allow you to deploy POJO without even hardcoding to their API. Obviously [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/09/how-to-write-better-pojo-services.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to manage Quartz remotely</title><link>http://www.javacodegeeks.com/2012/08/how-to-manage-quartz-remotely.html</link> <comments>http://www.javacodegeeks.com/2012/08/how-to-manage-quartz-remotely.html#comments</comments> <pubDate>Wed, 29 Aug 2012 16:00:00 +0000</pubDate> <dc:creator>Zemian Deng</dc:creator> <category><![CDATA[Enterprise Java]]></category> <category><![CDATA[Quartz]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/how-to-manage-quartz-remotely.html</guid> <description><![CDATA[Option 1: JMX Many people asked can they manage Quartz via JMX, and I am not sure why Quartz doc won&#8217;t even mention it. Yes you can enable JMX in quartz with the following in quartz.properties org.quartz.scheduler.jmx.export = true After this, you use standard JMX client such as $JAVA_HOME/bin/jconsole to connect and manage remotely. Option [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/08/how-to-manage-quartz-remotely.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Apache Camel using Groovy Introduction</title><link>http://www.javacodegeeks.com/2012/08/apache-camel-using-groovy-introduction_23.html</link> <comments>http://www.javacodegeeks.com/2012/08/apache-camel-using-groovy-introduction_23.html#comments</comments> <pubDate>Thu, 23 Aug 2012 16:00:00 +0000</pubDate> <dc:creator>Zemian Deng</dc:creator> <category><![CDATA[Groovy]]></category> <category><![CDATA[Apache Camel]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/apache-camel-using-groovy-introduction.html</guid> <description><![CDATA[From their site, it says the Apache Camel is a versatile open-source integration framework based on known Enterprise Integration Patterns. It might seem like a vague definition, but I want to tell you that this is a very productive Java library that can solve many of typical IT problems! You can think of it as [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/08/apache-camel-using-groovy-introduction_23.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Apache Camel using Groovy Introduction</title><link>http://www.javacodegeeks.com/2012/08/apache-camel-using-groovy-introduction.html</link> <comments>http://www.javacodegeeks.com/2012/08/apache-camel-using-groovy-introduction.html#comments</comments> <pubDate>Wed, 22 Aug 2012 16:00:00 +0000</pubDate> <dc:creator>Zemian Deng</dc:creator> <category><![CDATA[Groovy]]></category> <category><![CDATA[Apache Camel]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/apache-camel-using-groovy-introduction.html</guid> <description><![CDATA[From their site, it says the Apache Camel is a versatile open-source integration framework based on known Enterprise Integration Patterns. It might seem like a vague definition, but I want to tell you that this is a very productive Java library that can solve many of typical IT problems! You can think of it as [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/08/apache-camel-using-groovy-introduction.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 1193/1194 objects using apc
Content Delivery Network via jcg.javacodegeeks.netdna-cdn.com

Served from: www.javacodegeeks.com @ 2013-05-25 20:40:23 -->