SpringSource Seminar Day Linz in Review

Juergen Hoeller

A brief pictorial review of the SpringSource Seminar Day in Linz, having happened on September 8th, 2008, at the Bergschloessl Linz… More than 150 people were listening to a six-pack of presentations about what's new and upcoming at SpringSource. The "Story of Spring" keynote by Rod Johnson and Adrian Colyer was a great start into a day full of information: about the SpringSource Application Platform, the SpringSource Tool Suite, Spring 3.0, etc. (See the original blog announcement for details on the agenda.)

It was a pleasure to see so many people attending: from Austria as well as from Germany and Eastern Europe – and even from Norway! I hope you enjoyed the seminar and your stay in Upper Austria. Looking forward to seeing you again at the SpringOne Europe 2009 conference in Amsterdam, April 27-29… as well as at upcoming EJUG Austria events!

We are also finally able to provide the slide decks from the seminar as a PDF file archive, which you can download from here. Enjoy!

Cheers,

Juergen

Similar Posts

Share this Post
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • DZone
  • LinkedIn
  • Slashdot
  • Technorati
  • TwitThis
 

One response


  1. How to call set Methods which are overloaded

    i executed following code…

    Alpha.xml

    My Frame

    true

    Test.java

    /*
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    */

    package test;

    import java.awt.Frame;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    public class TestFrame
    {
    public static void main(String args[])
    {
    ApplicationContext ctx;
    ctx=new ClassPathXmlApplicationContext("/test/Alpha.xml");
    Frame f=(Frame)ctx.getBean("frame");

    }

    }

    it was executed….but i didnt able to execute the following code in Alpha.xml

    255

    0

    0

Leave a Reply