`
lujar
  • 浏览: 512621 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

spring-richclient开发swing应用程序 3

    博客分类:
  • JAVA
阅读更多

richclient-application-context.xml 上一节我们说到,这个文件是整个应用程序框架的核心,现在我们就来看这个文件。

1

 <bean id="petclinicLifecycleAdvisor"
  class="org.springframework.richclient.samples.petclinic.PetClinicLifecycleAdvisor">
  <property name="windowCommandBarDefinitions">
   <value>org/springframework/richclient/samples/petclinic/ui/commands-context.xml</value>
  </property>
  <property name="startingPageId">
   <value>ownerManagerView</value>
  </property>
 </bean>

PetClinicLifecycleAdvisor这个类定义在应用程序加载的特定阶段,需要执行的一些函数,我们来看一下

public class PetClinicLifecycleAdvisor extends DefaultApplicationLifecycleAdvisor {

//在窗口打开之前,执行一个setup向导
    public void onPreWindowOpen(ApplicationWindowConfigurer configurer) {
        super.onPreWindowOpen(configurer);
        if (getApplicationServices().containsBean("setupWizard")) {
            SetupWizard setupWizard = (SetupWizard)getApplicationServices().getBean("setupWizard", SetupWizard.class);
            setupWizard.execute();
        }
        // comment out to hide the menubar, toolbar, or reduce window size...
        //configurer.setShowMenuBar(false);
        //configurer.setShowToolBar(false);
        //configurer.setInitialSize(new Dimension(640, 480));
    }

//在命令都被加载以后,执行一个loginCommand,相当于按了一下登陆按钮,才会出现登陆对话框。

    public void onCommandsCreated(ApplicationWindow window) {
        initializeDefaultPreferences();
       
        ActionCommand command = window.getCommandManager().getActionCommand("loginCommand");
        command.execute();
    }
   

//初始化应用程序选项,这是每一个应用程序启动都必须,加载的配置在richclient-preference-context.xml中

    private void initializeDefaultPreferences() {
        PreferenceStore ps = (PreferenceStore) getApplicationServices().getBean("preferenceStore");
        ps.setDefault(PetClinicAppearance.DIALOG_PAGE_TYPE, CompositeDialogPageType.TREE);
    }

}

2

 <bean id="applicationObjectConfigurer"
  class="org.springframework.richclient.application.config.DefaultApplicationObjectConfigurer">
  <constructor-arg index="0">
   <ref bean="messageSource"/>
  </constructor-arg>
  <constructor-arg index="1">
   <ref bean="imageSource"/>
  </constructor-arg>
  <constructor-arg index="2">
   <ref bean="iconSource"/>
  </constructor-arg>
 </bean>

这个定义了一下需要用到的资源文件,包括文件,图标和语言文件。初学者或者从VB开发转过来的朋友要明白,把这些资源放在一个目录里面动态加载是可以提升降低程序的大小,提高程序性能的。

3

 <bean id="applicationEventMulticaster"
  class="org.springframework.context.event.SimpleApplicationEventMulticaster"/>

定义了事件分发的bean,用于将界面按钮的相应转给相应的command执行

4

    <bean id="binderSelectionStrategy"
        class="org.springframework.richclient.samples.petclinic.ui.binder.PetClinicBinderSelectionStrategy">
        <property name="bindersForPropertyTypes">
            <map>
<!--                <entry>
                    <key>
                        <value type="java.lang.Class">java.util.Date</value>
                    </key>
                    <bean
                        class="org.springframework.richclient.samples.petclinic.ui.binder.CustomDatePickerBinder"/>
                </entry>-->
                <entry>
                    <key>
                        <value type="java.lang.Class">
                            org.springframework.samples.petclinic.PetType</value>
                    </key>
                    <bean
                        class="org.springframework.richclient.samples.petclinic.ui.binder.PetTypeBinder">
                        <property name="clinic">
                            <ref bean="clinic"/>
                        </property>
                    </bean>
                </entry>
            </map>
        </property>
    </bean>

定义了一个select控件的数据绑定,就是在程序中添加宠物时用于选择宠物类型的。

5

 <bean id="lookAndFeelConfigurer"
  class="org.springframework.richclient.application.config.JGoodiesLooksConfigurer">
  <property name="popupDropShadowEnabled" value="false" />
  <property name="theme"> 
   <bean class="com.jgoodies.looks.plastic.theme.ExperienceBlue"/>
  </property>
 </bean>

调用了jgoodies的一个皮肤

6

 <bean id="messageSource"
  class="org.springframework.context.support.ResourceBundleMessageSource">
  <property name="basenames">
   <list>
    <value>org.springframework.richclient.samples.petclinic.ui.messages</value>
    <value>org.springframework.richclient.samples.petclinic.ui.preference.messages</value>
    <value>org.springframework.richclient.application.messages</value>
   </list>
  </property>
 </bean>
 
 <bean id="imageResourcesFactory"
  class="org.springframework.context.support.ResourceMapFactoryBean">
  <property name="locations">
   <list>
    <value>classpath:org/springframework/richclient/image/images.properties</value>
    <value>classpath:org/springframework/richclient/samples/petclinic/ui/images.properties</value>
   </list>
  </property>
  <property name="resourceBasePath">
   <value>images/</value>
  </property>
 </bean>
 
 <bean id="imageSource"
  class="org.springframework.richclient.image.DefaultImageSource">
  <constructor-arg index="0">
   <ref bean="imageResourcesFactory"/>
  </constructor-arg>
  <property name="brokenImageIndicator">
   <value>images/alert/error_obj.gif</value>
  </property>
 </bean>
 
 <bean id="iconSource"
  class="org.springframework.richclient.image.DefaultIconSource">
  <constructor-arg index="0">
   <ref bean="imageSource"/>
  </constructor-arg>
 </bean>

定义资源文件的地点,不用多说。

7

 <bean id="formComponentInterceptorFactory"
  class="org.springframework.richclient.form.builder.support.ChainedInterceptorFactory">
  <property name="interceptorFactories">
   <list>
    <bean class="org.springframework.richclient.form.builder.support.ColorValidationInterceptorFactory">
     <property name="errorColor">
      <value>255,245,245</value>
     </property>
    </bean>
    <bean class="org.springframework.richclient.form.builder.support.OverlayValidationInterceptorFactory"/>
    <bean class="org.springframework.richclient.text.TextComponentPopupInterceptorFactory"/>
    <bean class="org.springframework.richclient.list.ComboBoxAutoCompletionInterceptorFactory">
     <property name="messageSource">
      <ref bean="messageSource"/>
     </property>
    </bean>
   </list>
  </property>
 </bean> 

为了让表单填写智能化用的三个interceptor。从名字就可以看出,

ColorValidationInterceptorFactory:错误显示灰色颜色

OverlayValidationInterceptorFactory

TextComponentPopupInterceptorFactory:文本框弹出提示

ComboBoxAutoCompletionInterceptorFactory组合框自动补完

8

 <bean id="rulesSource"
  class="org.springframework.richclient.samples.petclinic.domain.PetClinicValidationRulesSource"/>

数据完整性验证,例如

return all(new Constraint[] {required(), maxLength(25), regexp("[a-zA-Z]*", "alphabetic")});

9

 <bean id="ownerManagerView"
  class="org.springframework.richclient.application.support.DefaultViewDescriptor">
  <property name="viewClass">
   <value>org.springframework.richclient.samples.petclinic.ui.OwnerManagerView</value>
  </property>
  <property name="viewProperties">
   <map>
    <entry key="clinic">
     <ref bean="clinic"/>
    </entry>
   </map>
  </property>
 </bean>
 宠物主人管理的界面
 <bean id="newOwnerWizard"
  class="org.springframework.richclient.samples.petclinic.ui.NewOwnerWizard">
  <property name="clinic">
   <ref bean="clinic"/>
  </property>
 </bean>
 添加宠物主人的向导
 <bean id="vetManagerView"
  class="org.springframework.richclient.application.support.DefaultViewDescriptor">
  <property name="viewClass">
   <value>org.springframework.richclient.samples.petclinic.ui.VetManagerView</value>
  </property>
  <property name="viewProperties">
   <map>
    <entry key="clinic">
     <ref bean="clinic"/>
    </entry>
   </map>
  </property>
 </bean>
 宠物管理界面


 <bean id="setupWizard"
  class="org.springframework.richclient.application.setup.SetupWizard">
  <property name="licenseTextLocation">
   <value>/org/springframework/richclient/samples/petclinic/license.html</value>
  </property>
 </bean>

开始时后的安装向导

分享到:
评论

相关推荐

    spring RichClient spring RichClient 示例源码

    Spring RichClient是一款基于Spring框架的桌面应用程序开发工具,它提供了丰富的客户端UI组件和强大的数据绑定功能,使得开发者...通过深入研究源码,你将能掌握Spring RichClient的用法,提高你的桌面应用开发技能。

    Spring Rich Client

    Spring Rich Client Platform(SRCP)是一种基于Java Swing的客户端应用程序开发框架,它充分利用了Spring框架的强大功能,为开发者提供了构建可扩展、模块化且高性能的桌面应用的可能性。本文将详细介绍Spring Rich...

    Spring Rich Client-开源

    在压缩包"spring-richclient-1.0.0"中,可能包含了Spring Rich Client的源代码、API文档、示例项目和安装指南等资源。通过学习和研究这些内容,开发者可以深入了解如何使用该框架来构建自己的富客户端应用。例如,源...

    Spring和Desktop的关系

    然而,随着技术的发展,Spring也开始涉足桌面应用开发。在桌面应用领域,Spring可以提供类似于Web开发中的优势,如组件化、依赖管理、事务处理和数据访问等。 Spring Desktop项目,也称为Spring RCP(Rich Client ...

    关于RCP.pdf

    RCP(Rich Client Platform)是一种基于Eclipse的插件架构,用于开发rich client应用程序。RCP提供了一个完善的企业应用解决方案,包括表现层、业务逻辑层、报表、权限、日志、国际化、部署等企业应用的各个环节。 ...

    swing界面设计之JTree

    本节主要介绍如何利用Spring框架结合Swing来开发图形用户界面(GUI),并通过依赖注入来增强应用程序的灵活性与可维护性。 **前提条件** - Java基础知识。 - Spring框架的基础知识。 - 对Swing有一定的了解。 **...

    java开源包1

    Sidekiq 为 Rails 3 应用程序提供一个高效的消息队列系统。 Java文件上传组件 COS FAT文件系统读写类库 fat32-lib fat32-lib 是一个用来读写 FAT 16/32 格式文件系统的纯 Java 类库(纯的)。 Eclipse的HTML格式...

    rcp相关资料

    RCP(Rich Client Platform)是Eclipse平台提供的一个用于构建富客户端应用程序的框架。它允许开发者利用Java语言和Swing/AWT等技术创建功能丰富、界面友好的桌面应用程序。 ##### 1.2 示例解读 本示例介绍了一个...

    swt form

    - SWT 通常是 Eclipse RCP(Rich Client Platform)开发的一部分,因此学习相关框架如 Eclipse RCP 或 JFace 也是有益的。 - 开源框架如 Spring 或 MyBatis 的数据绑定技术可以与 SWT Form 结合,提供更高级的数据...

    java swt自定义控件

    如果你正在开发Eclipse Rich Client Platform (RCP) 应用程序,自定义控件可以增强应用程序的用户体验。你可以将这些控件集成到工作台视图、编辑器或其他SWT部件中。 ### 8. 性能优化 尽管SWT提供了高效的本地化...

    java开源包10

    Sidekiq 为 Rails 3 应用程序提供一个高效的消息队列系统。 Java文件上传组件 COS FAT文件系统读写类库 fat32-lib fat32-lib 是一个用来读写 FAT 16/32 格式文件系统的纯 Java 类库(纯的)。 Eclipse的HTML格式...

    java开源包3

    Sidekiq 为 Rails 3 应用程序提供一个高效的消息队列系统。 Java文件上传组件 COS FAT文件系统读写类库 fat32-lib fat32-lib 是一个用来读写 FAT 16/32 格式文件系统的纯 Java 类库(纯的)。 Eclipse的HTML格式...

    刘树全的J2EE培训教程

    5. **RichClient**:探讨了SwingWeb、Echo、Flex、Laszlo System和SmartClient,这些都是创建富客户端应用的技术。 6. **JSF(JavaServer Faces)**:从初级到高级,包括SUN、IBM和Oracle的实现。 7. **脚本语言...

    java开源包11

    Sidekiq 为 Rails 3 应用程序提供一个高效的消息队列系统。 Java文件上传组件 COS FAT文件系统读写类库 fat32-lib fat32-lib 是一个用来读写 FAT 16/32 格式文件系统的纯 Java 类库(纯的)。 Eclipse的HTML格式...

    java开源包2

    Sidekiq 为 Rails 3 应用程序提供一个高效的消息队列系统。 Java文件上传组件 COS FAT文件系统读写类库 fat32-lib fat32-lib 是一个用来读写 FAT 16/32 格式文件系统的纯 Java 类库(纯的)。 Eclipse的HTML格式...

    java开源包6

    Sidekiq 为 Rails 3 应用程序提供一个高效的消息队列系统。 Java文件上传组件 COS FAT文件系统读写类库 fat32-lib fat32-lib 是一个用来读写 FAT 16/32 格式文件系统的纯 Java 类库(纯的)。 Eclipse的HTML格式...

    java开源包5

    Sidekiq 为 Rails 3 应用程序提供一个高效的消息队列系统。 Java文件上传组件 COS FAT文件系统读写类库 fat32-lib fat32-lib 是一个用来读写 FAT 16/32 格式文件系统的纯 Java 类库(纯的)。 Eclipse的HTML格式...

    java开源包4

    Sidekiq 为 Rails 3 应用程序提供一个高效的消息队列系统。 Java文件上传组件 COS FAT文件系统读写类库 fat32-lib fat32-lib 是一个用来读写 FAT 16/32 格式文件系统的纯 Java 类库(纯的)。 Eclipse的HTML格式...

    java开源包8

    Sidekiq 为 Rails 3 应用程序提供一个高效的消息队列系统。 Java文件上传组件 COS FAT文件系统读写类库 fat32-lib fat32-lib 是一个用来读写 FAT 16/32 格式文件系统的纯 Java 类库(纯的)。 Eclipse的HTML格式...

Global site tag (gtag.js) - Google Analytics