The Artima Developer Community
Sponsored Link

Java Buzz Forum
Simplifying Spring XML

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
dion

Posts: 5028
Nickname: dion
Registered: Feb, 2003

Dion Almaer is the Editor-in-Chief for TheServerSide.com, and is an enterprise Java evangelist
Simplifying Spring XML Posted: Oct 10, 2004 11:05 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by dion.
Original Post: Simplifying Spring XML
Feed Title: techno.blog(Dion)
Feed URL: http://feeds.feedburner.com/dion
Feed Description: blogging about life the universe and everything tech
Latest Java Buzz Posts
Latest Java Buzz Posts by dion
Latest Posts From techno.blog(Dion)

Advertisement
The Spring guys have allows us to clean up the Spring XML files quite a bit recently. First, they added the notion of building a "template" which you can inherit from which is cool. Now, a more simple change is in the works. Take a look at a normal bean setup: <property name="user"><value>admin</value></property> <property name="linkFormatter"><ref bean="linkFormatter"/></property> There is talk of changing to something such as: <property name="user" value="admin"/> <property name="linkFormatter" ref-bean="linkFormatter"/> A big +1 from me. Small things like this make a difference. I also think that the Spring XML config can learn from that of Hivemind.

Read: Simplifying Spring XML

Topic: Upload build artefacts to your blog with Ant Previous Topic   Next Topic Topic: JDJ 2004 Best Foreward?

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use