Getting Started with Spring RCP
Table of Contents
- Getting Started
- Creating a View
- Adding Customer Data
- Adding Docking Views
- Enabling Actions
- Adding Context Sensitivity
- Changing the Look & Feel
Getting Started
- Install the Spring RCP Tooling plugin into NetBeans IDE 6.1.
- In the New Project wizard (Ctrl-Shift-N), you will find a new project template:
- Complete the wizard and you have a project structure as follows:

A brief overview of the files that you see above (be aware that if you move "richclient-application-context.xml" or "messages.properties" to any other place, or if you rename either of them, you need to update the Spring Rich Client panel in the application's Project Properties dialog box):
File Explanation SimpleApp.java Provides the application's "main" method and launches the application
via the Spring RCP "ApplicationLauncher" class. That class loads the
application context XML file and the startup context XML file, where application-level concerns such as the splash screen, initialization sequences, and views are defined.SimpleLifecycleAdvisor.java Provides lifecycle management for the application. This class is
registered in the application context XML file. It provides methods such
as "onWindowOpened" and "onCommandsCreated", so that you have
entry points to customize what happens when the application starts. (For example, you can adjust the application's size in the "onPreWindowOpen" method.)richclient-application-context.xml Provides the application context XML file, which configures the Spring RCP
components and services.richclient-startup-context.xml Provides the startup context XML file, which defines the splash screen, but could define anything that you want to have happen specifically at startup. images.properties Provides the image resource. It is registered in the application context
XML file.splash-screen.jpg Provides the splash screen image that is used in the startup context XML
file.commands-context.xml Provides the application's commands, organized within menu bars and toolbars, and the items within them. This file is declared in the application context XML file. messages.properties Provides the display texts in a centralized location. For example, texts for titles and descriptions are found here.
Note: The template also put most of the Spring RCP JARs on your application's classpath. Look in the Libraries node to see which ones are there. Potentially, more JARs could be included in the plugin as the complexity of the provided tooling increases. - Run the application. You should see this:
| Attachment | Size |
|---|---|
| figure-1.png | 49.01 KB |
| figure-2.png | 37.15 KB |
| figure-3.png | 10.45 KB |
| figure-4.png | 24.74 KB |
| figure-5.png | 49.25 KB |
| figure-6.png | 9.61 KB |
| figure-7.png | 62.91 KB |
| figure-8.png | 22.96 KB |
| figure-9.png | 108.96 KB |
| figure-10.png | 64.77 KB |
| figure-11.png | 121.18 KB |
| figure-12.png | 25.68 KB |
| figure-13.png | 20.96 KB |
| figure-14.png | 105.25 KB |
| figure-15.png | 3.28 KB |
| figure-16.png | 6.23 KB |
| figure-17.png | 94.77 KB |
| figure-18.png | 80.02 KB |
| figure-19.png | 26.8 KB |
| figure-20.png | 24.82 KB |
| figure-21.png | 2.76 KB |
| figure-22.png | 9.17 KB |
| figure-23.png | 98.88 KB |
| figure-24.png | 99.05 KB |
| figure-25.png | 117.51 KB |
| figure-26.png | 99.56 KB |
| figure-27.png | 89.89 KB |
| figure-28.png | 109.22 KB |
| figure-29.png | 211.88 KB |
- Login or register to post comments
- 19924 reads
- Flag as offensive
- Email this Story
- Printer-friendly version
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)







Comments
Jacek replied on Tue, 2008/07/01 - 6:31am
Don't get me wrong, it's a nice effort...but the amount of XML config required to make the most basic of setup makes my stomach turn. Really, most of this should be one method call to some common ancestor or static class to register and configure your views.
I don't want to even think what sort of havoc you could wreck on your app if you did any major refactoring of your code and your IDE didn't update the Spring XML files correctly.
It seems like the wrong solution for an issue than in 95% of the cases will not change over time any way and hence does probably not need to be soft-coded in XML, down to every last little detail.
But Spring is the hot kid on the block these days, so I guess that's the way everyone is going...I for once would prefer that someone creates something equivalent but lets you configure it with simple annotations like EJB 3.0. Isn't annotation support part of the new Spring release?
Could this example be re-worked to avoid configuring every single detail in XML and using the new Spring annotations instead?
Geertjan Wielenga replied on Tue, 2008/07/01 - 6:46am
Jacek replied on Tue, 2008/07/01 - 6:52am
Yes, but let's face it....since the project lead left to join Adobe, JSR-296 seems to be as dead as the dodo, if I recall correctly.
https://appframework.dev.java.net/servlets/ReadMsg?list=users&msgNo=1567
The last release is from Nov 2007 when Hans was still employed with Sun...doesn't exactly install confidence in the long term viability of this JSR. Say what you want about Spring, but at least it has a large active community.
Geertjan Wielenga replied on Tue, 2008/07/01 - 6:58am
in response to: Jacek
Yes, but let's face it....since the project lead left to join Adobe, JSR-296 seems to be as dead as the dodo, if I recall correctly.
https://appframework.dev.java.net/servlets/ReadMsg?list=users&msgNo=1567
The last release is from Nov 2007 when Hans was still employed with Sun...doesn't exactly install confidence in the long term viability of this JSR. Say what you want about Spring, but at least it has a large active community.
True enough, except that Spring RCP hasn't existed in any real form over the past years. Now it's back but there's no guarantee that it'll go anywhere. (The 1.0.0 release just came out, after two years, and so who knows when the next release will be with us?) I would personally like it to do so (hence this article and hence the tooling I'm providing, should you need evidence), but there's no guarantees (hard to argue with Kirill's comments here). In that sense, depending on Spring RCP is as problematic as depending on JSR-296, but for different reasons. (And that's why I focused only on the technology in this article without being distracted by the politics around it.)
Jacek replied on Tue, 2008/07/01 - 7:03am
in response to: geertjan
doclolieven replied on Tue, 2008/07/01 - 10:15am
in response to: Jacek
Don't get me wrong, it's a nice effort...but the amount of XML config required to make the most basic of setup makes my stomach turn. Really, most of this should be one method call to some common ancestor or static class to register and configure your views.
You're right, but the registration you speak of is just the sort of locator pattern we want to refactor out of the system. I'm looking into the annotation based configuration, which works great as long as you don't do a lot of configuration besides injecting other beans (f.e. using a propertyplaceholder configurer in conjunction with the component scanning provided in Spring 2.5 is proving to be a real PITA).
I don't think the XML configuration is that much of a burden, if you have a good IDE with Spring support I don't think you'll have a lot of issues. I've worked in a company where all products were made with Spring RCP, and I haven't encountered any problems concerning writing all those bean definitions. There could be some improvement, but I'm thinking more in the line of custom namespaces.
Anyway, you're right in many ways. Things should be simplified. But then again, writing all my forms in YAML also seems a real hassle, and I'm sure a refactor will certainly cause all sorts havoc there too... :)
Jacek replied on Tue, 2008/07/01 - 10:23am
in response to: doclolieven
Point taken :-) I guess I just like YAML a lot more than XML (and I think writing the forms in YAML is a lot less hassle than coding them by hand, but hey...I recognize it's an off the beaten path approach).
It just seems that with Spring it's an all or nothing proposition, even the most basic config stuff is externalized. Seems overkill for 90% of apps.
Peter Karich replied on Tue, 2008/07/01 - 4:24pm
Great Geertjan!
Thanks a lot!
Does NetBeans handle the refactoring in XML? If yes, how?
>> Secondly, you can try the Swing Application Framework (JSR-296) if you want annotations rather than XML.
Isn't it possible to configure Spring with Java or a scripting language? In picocontainer this is possible with nanocontainer.
Any hints?
Geertjan Wielenga replied on Tue, 2008/07/01 - 4:29pm
Peter Karich replied on Wed, 2008/07/02 - 2:22am
But wouldn't it be cool to provide those things?
Then NetBeans will be the SpringRC-IDE ;-)
Hint: To create the simple app with your plugin it is required to have the jdk1.6 as default (javax.swing.GroupLayout)
Rohan Ranade replied on Thu, 2008/07/03 - 7:29am