samikshakalra
samikshakalra

Reputation: 11

Developing a Standalone application with spring framework

I have a few questions related to developing a standalone application with the spring frawework

It will be of great help if some link for creating the same can be shared?

Thanks in advance.

Upvotes: 1

Views: 2585

Answers (1)

Eugene Ryzhikov
Eugene Ryzhikov

Reputation: 17359

  • I don't think there is any preference in UI toolkit, but I would use Swing. Simply for the fact that it is built-in to JDK. Obviously SWT can be used too, but you would have to deploy additional and platform-specific libraries. So in my view using Swing is simply easier (unless you have more experience in SWT)

  • Almost any Swing framework can be used with Spring. We used Swing Application Framework, but it really does not matter. Spring Rich Client is outdated though and I wouldn't recommend it.

The most suitable link:

http://www.ibm.com/developerworks/java/tutorials/j-springswing/

Upvotes: 2

Related Questions