<?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: A Java configuration option for Spring</title>
	<atom:link href="http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/</link>
	<description>The voice of SpringSource</description>
	<lastBuildDate>Sun, 21 Mar 2010 14:08:54 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Programmer</title>
		<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/comment-page-3/#comment-131963</link>
		<dc:creator>Programmer</dc:creator>
		<pubDate>Fri, 12 Dec 2008 11:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/#comment-131963</guid>
		<description>Excellent article. I&#039;ve been using Spring for two years and it is fantastic</description>
		<content:encoded><![CDATA[<p>Excellent article. I&#039;ve been using Spring for two years and it is fantastic</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ë¹›ì?„ ë‹´ê³  ì„¸ìƒ? ë„“ížˆê¸° &#187; Spring Dependency Injection ì •ë¦¬</title>
		<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/comment-page-3/#comment-103594</link>
		<dc:creator>ë¹›ì?„ ë‹´ê³  ì„¸ìƒ? ë„“ížˆê¸° &#187; Spring Dependency Injection ì •ë¦¬</dc:creator>
		<pubDate>Fri, 18 Apr 2008 11:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/#comment-103594</guid>
		<description>[...] code from &#8216;A Java configuration option for Spring&#8217; by Rod Johnson&#8217; [...]</description>
		<content:encoded><![CDATA[<p>[...] code from &#039;A Java configuration option for Spring&#039; by Rod Johnson&#039; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prosolution</title>
		<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/comment-page-3/#comment-102841</link>
		<dc:creator>Prosolution</dc:creator>
		<pubDate>Fri, 11 Apr 2008 05:33:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/#comment-102841</guid>
		<description>I am Very thank full the owner of this blog. Becouse of this blog is very imformative for me.. And I ask u some thiing You make more this type blog where we can get more knowledge.</description>
		<content:encoded><![CDATA[<p>I am Very thank full the owner of this blog. Becouse of this blog is very imformative for me.. And I ask u some thiing You make more this type blog where we can get more knowledge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SpringSource Team Blog &#187; Spring Dependency Injection &#38; Java 5 (including slides and code)</title>
		<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/comment-page-3/#comment-100938</link>
		<dc:creator>SpringSource Team Blog &#187; Spring Dependency Injection &#38; Java 5 (including slides and code)</dc:creator>
		<pubDate>Tue, 18 Mar 2008 16:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/#comment-100938</guid>
		<description>[...] A Java Configuration Option for Spring by Rod Johnson [...]</description>
		<content:encoded><![CDATA[<p>[...] A Java Configuration Option for Spring by Rod Johnson [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/comment-page-3/#comment-97572</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Fri, 08 Feb 2008 18:11:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/#comment-97572</guid>
		<description>JavaConfig is great, I love the type safety I get from building config in Java.  I am extending ConfigurationSupport in one of my @Configuration-annotated classes and using getBean() to inject dynamically specified beans (ie, they are dynamically specified via a property file or command line parameter).  So far, so good... but now I also want to be able to specify string-values that would normally run through Spring&#039;s registered Property Editors (without hooking back into XML-specified ).  For example, maybe a new function called getProperty() similar to getBean() that maybe works like this:

 myNewBean.setEnumValue(
    (MyEnumClass)getProperty( &quot;STRING_ENUM_TYPE&quot;, MyEnumClass.class ) );

Maybe something to put on feature list?

As for a catchy name, can I suggest &quot;Coil&quot; = &quot;Configuring Objects In Language&quot;? :)</description>
		<content:encoded><![CDATA[<p>JavaConfig is great, I love the type safety I get from building config in Java.  I am extending ConfigurationSupport in one of my @Configuration-annotated classes and using getBean() to inject dynamically specified beans (ie, they are dynamically specified via a property file or command line parameter).  So far, so good&#8230; but now I also want to be able to specify string-values that would normally run through Spring&#039;s registered Property Editors (without hooking back into XML-specified ).  For example, maybe a new function called getProperty() similar to getBean() that maybe works like this:</p>
<p> myNewBean.setEnumValue(<br />
    (MyEnumClass)getProperty( &#034;STRING_ENUM_TYPE&#034;, MyEnumClass.class ) );</p>
<p>Maybe something to put on feature list?</p>
<p>As for a catchy name, can I suggest &#034;Coil&#034; = &#034;Configuring Objects In Language&#034;? <img src='http://blog.springsource.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vigrx plus</title>
		<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/comment-page-3/#comment-86200</link>
		<dc:creator>vigrx plus</dc:creator>
		<pubDate>Tue, 08 Jan 2008 18:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/#comment-86200</guid>
		<description>Vigrx plus is answer for your erectile dysfunction, anti impotence, penis enlargement, and hard rock erections. www.vig-rxplus.com</description>
		<content:encoded><![CDATA[<p>Vigrx plus is answer for your erectile dysfunction, anti impotence, penis enlargement, and hard rock erections. <a href="http://www.vig-rxplus.com" rel="nofollow">http://www.vig-rxplus.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Appasamy</title>
		<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/comment-page-3/#comment-77164</link>
		<dc:creator>Appasamy</dc:creator>
		<pubDate>Sat, 08 Dec 2007 13:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/#comment-77164</guid>
		<description>
  
    
     com.serv.IService
    
   
      
    
   

  
    
     com.serv.IService
    
   
      
    
   


As shown in the above spring.xml for both &#039;Individual&#039; and &#039;Oranization&#039; id s I want to instantiate only the same class i.e, com.service.Service
and I am repeating the entries unnecessarily. Can some body help me to make it as a single entry</description>
		<content:encoded><![CDATA[<p>com.serv.IService</p>
<p>     com.serv.IService</p>
<p>As shown in the above spring.xml for both &#039;Individual&#039; and &#039;Oranization&#039; id s I want to instantiate only the same class i.e, com.service.Service<br />
and I am repeating the entries unnecessarily. Can some body help me to make it as a single entry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rod Johnson</title>
		<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/comment-page-3/#comment-59958</link>
		<dc:creator>Rod Johnson</dc:creator>
		<pubDate>Sun, 04 Nov 2007 01:41:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/#comment-59958</guid>
		<description>We are taking this project forward. Expect to see an M3 release this month.</description>
		<content:encoded><![CDATA[<p>We are taking this project forward. Expect to see an M3 release this month.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bilety lotnicze</title>
		<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/comment-page-3/#comment-59437</link>
		<dc:creator>bilety lotnicze</dc:creator>
		<pubDate>Fri, 02 Nov 2007 13:36:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/#comment-59437</guid>
		<description>&quot;A Java configuration option for Spring&quot; -  Good work. Cogratulations</description>
		<content:encoded><![CDATA[<p>&#034;A Java configuration option for Spring&#034; &#8211;  Good work. Cogratulations</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Razvan</title>
		<link>http://blog.springsource.com/2006/11/28/a-java-configuration-option-for-spring/comment-page-3/#comment-56623</link>
		<dc:creator>Razvan</dc:creator>
		<pubDate>Sun, 21 Oct 2007 03:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/#comment-56623</guid>
		<description>Cool job ! I really really like it and I want it !

Question : If you want scripting language why not consider Bean Shell Scripting Framework instead of Groovy (I&#039;m not a groovy enthusiast) ? I can&#039;t see any reason for BSH not to be the FIRST option.</description>
		<content:encoded><![CDATA[<p>Cool job ! I really really like it and I want it !</p>
<p>Question : If you want scripting language why not consider Bean Shell Scripting Framework instead of Groovy (I&#039;m not a groovy enthusiast) ? I can&#039;t see any reason for BSH not to be the FIRST option.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
