已阅读5页,还剩25页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
MVCin10.0,MVCIntroductionMVCinWindchillJCAwithMVCTools,MVCin10.0,Agenda,ModelViewController(MVC)isasoftwarearchitecture,currentlyconsideredanarchitecturalpatternusedinsoftwareengineering.Theuserinteractswiththeuserinterfaceinsomeway.Thecontrollerhandlestheinputeventfromtheuserinterface,oftenviaaregisteredhandlerandconvertstheeventintoanactionunderstoodbythemodel.Thecontrollernotifiesthemodeloftheuseraction,possiblyresultinginachangeinthemodelsstate.Aviewqueriesthemodelinordertogenerateanappropriateuserinterface(forexample,thecontentsofafoldertable).Theviewdataisprovidedinthroughthemodel.Theuserinterfacewaitsforfurtheruserinteractions,whichrestartsthecontrolflowcycle.,MVC-Introduction,InX12,forJCA,JSPTMwasservingbothastheControllerandView.InX20weareintroducingaclearseparationbetweenControllerandView.Centralizedcontroller.Insteadofhavingmultipleservletsascontrollers,amainServletisusedtomakecontrolmoremanageable.(TheFrontControllerpattern)WindchillusesSpringMVCF.springframework.web.servlet.DispatcherServletactsastheFrontcontroller.,MVC-Introduction,MVCinWindchill,ServletMapping,WebContainer,SpringsDispatcherServlet,MVCRequest,Request,FrontController,ServletmappinginWT_HOMEcodebaseWEB-INFweb.xml,MVCinWindchill,MVCDispatcher/servlet/WizardServlet/*/servlet/ActionsMenu/*/servlet/RecentList/*/servlet/Navigation/*/servlet/SuggestServlet/*/servlet/TypeBasedIncludeServlet/*/servlet/UIValidationAJAXServlet/*/ptc1/*/app/*/gwt/*MVCDispatcherServletforJCAMVCDispatcherorg.springframework.web.servlet.DispatcherServlet1,ServletMapping,ApplicationContext:representsasetofConfigurationFilesthatareusedtoprovideConfigurationInformationtotheApplication.WT_HOMEcodebaseWEB-INFMVCDispatcher-servlet.xmlImportsalltheSpringconfigurationxmlfilesthatresideinWT_HOMEcodebaseconfigmvcDefinesHandlermapping:toloadthemappingsspecifiedinthepropertiesfilesatWT_HOMEcodebaseconfigmvcDoneonMethodServerstartup.Wheneveranyconfigurationchanges,needtorestarttheMethodServer.HowSpringhandlesarequest?TheClientrequestsforaResourceintheWebApplication.TheSpringFrontController,willintercepttheRequestandthenwilltrytofindouttheappropriateHandlerMappings.TheHandlerMappingisusedtomaparequestfromtheClienttoHandler.WiththehelpofHandlerAdapters,theSpringFrontControllerwilldispatchtheRequesttotheHandler.,MVCinWindchill,MVCinWindchill:RequestHandling,DispatcherServlet,HandlerMappingsinWT_HOMEcodebaseconfigmvcmvc.xml,DefaultAnnotationHandlerMappingSimpleUrlHandlerMapping,SimpleControllerHandlerAdapterAnnotationMethodHandlerAdapterGwtHandlerAdapter,Request,HandlerAdapter,Handler,HandlerAdaptersinWT_HOMEcodebaseconfigmvcmvc.xml,InpreviousreleasesofJCA,developersusedJSPtagstoconfiguretheircomponents.WiththeX-20release,tag-basedconfigurationshavebeenmovedtoasetofJavainterfacescalledbuilders.RequestsforcomponentsareroutedtoacentralizedComponentController.ThiscontrollerderivesthecomponentIDfromtherequestparameters,andthenusesSpringconfigurationtolookupbuilderimplementations,MVCinWindchill,ComponentControllerOOTBHandlertobuildMVCcomponents(aModelAndView)ComponentDefinitionResource:ptc1/Builders:CreateComponentConfigandComponentDataWhofindstheBuilders?ComponentBuilderResolver,MVCinWindchill:RequestHandling,Model,ComponentConfig,ComponentData,ComponentDefinition,JCAwithMVC,ComparisonstoR9.X,ComponentDataBuilder,ComponentConfigBuilder,Createstheconfigurationobjectsforretrievingthedataforthecomponent,aswellastoproviderenderinghints.MapstotheDescribeTableandRenderTabletags,andConfigurableTableimplementationof9.0and9.1,Createsadatamodelusingbothrequestparametersfromtheclientaswellasacomponentconfigurationbuiltbytheconfigbuilder.MapstotheGetModelandGetIeModeltagsof9.0and9.1.,JCAwithMVC,Aquicklookatresultingchanges,JSP:,ComponentBuilder:ComponentBuilder(netmarkets_project_list)publicclassProjectListBuilderextendsAbstractConfigurableTableBuilderOverridepublicComponentConfigbuildComponentConfig(ComponentParamsparams)ComponentConfigFacoryfactory=getComponentConfigFactory();TableConfigtable=factory.newTableConfig();table.setLabel(ClientMessage.get(RESOURCE,PROJECT_LIST_NAME);table.setType(jmgmt.admin.Project2);.returntable;,ComponentsthatextendComponentConfiginterfaceTableConfigAttributesTableConfigTreeConfigAttributePanelConfigColumnConfigInfoConfigPropertyConfigPropertyPanelConfig,MVCComponents,BuildersImplementtheappropriatebuilderinterfaceAnnotateitwithComponentBuildertospecifytowhichcomponentIditsmappedfor.ComponentBuilder(value=“,type=ComponentBuilderType.CONFIG_ONLY)ComponentBuilder(value=“,type=ComponentBuilderType.DATA_ONLY)ComponentBuilder(value=“,”),MVCBuilders,/ConfigBuilderComponentBuilder(value=carambola.mvc.table.separateBuilders,type=ComponentBuilderType.CONFIG_ONLY)publicclassMvcTableConfigBuilderextendsAbstractComponentConfigBuilder/DataBuilderComponentBuilder(value=carambola.mvc.table.separateBuilders,type=ComponentBuilderType.DATA_ONLY)publicclassMvcTableDataBuilderimplementsComponentDataBuilder,ComponentConfigFactoryAware/Config+DataBuilderComponentBuilder(carambola.mvc.tree)publicclassMvcTreeBuilderextendsAbstractConfigurableTableBuilder,ConfigBuilderIponents.ComponentConfigBuilderDataBuilderIponents.ComponentDataBponents.ComponentDataBuilderAponents.TreeDataBuilderAponents.ComponentDataConverter:ConverttherawDataintoComponentData.,MVCBuilders,MVCAbstractComponentBuilder,MVCAbstractDataBuilder,DataSourceSessionAwareAbstractDataSourceComponentDataBuilder,ComponentConfigFactoryAwareAbstractComponentDataBuilder,ComponentDataBuilderConvertingComponentDataBuilder,JCAComponentsthatimplementComponentConfiginterfaceJcaTableConfigJcaAttributesTableConfigJcaTreeConfigJcaAttributePanelConfigJcaColumnConfigJcaInfoConfigJcaPropertyConfigJcaPropertyPanelConfig,JCAcomponents,JCATable,JCATree,JCAAttributeTable&PropertyPanel,JCAAttributePanel,WT_HOMEcodebaseconfigmvcjca-mvc.xml,JCAconfigurationsforMVC,-componentControllertypeBasedComponentController,WT_HOMEcodebaseconfigmvcjca-mvc.xml,JCAconfigurationsforMVC,-,HowComponentControllerhandlecomp/*,JcaComponentBuilderResolver,ComponentConfigBuilder,ComponentDataBuilder,Jca*ComponentConfig,ComponentData,ComponentDefiniton,ModelAndView,ComponentId,defaultViewMappings,JcaComponentConfigFactory,HowComponentControllerhandletcomp/*,TypeBasedComponentBuilderResolver,ComponentConfigBuilder,ComponentDa
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2026年安全员之C证(专职安全员)考试题库500道带答案(能力提升)
- 2026年国家电网招聘之经济学类考试题库500道附完整答案(夺冠系列)
- 2026年二级注册建筑师之法律法规经济与施工考试题库500道附答案【预热题】
- 2026年中级注册安全工程师之安全实务化工安全考试题库300道及完整答案(网校专用)
- 2025年雅思段落匹配真题及答案
- 检验科入职考试题及答案
- 2026年县乡教师选调进城考试《教育学》题库300道附答案(典型题)
- 关于某某传统村落保护与活态利用合作合同
- 贵州幼教招考试题及答案
- 2026年初级经济师之初级建筑与房地产经济考试题库300道及答案【必刷】
- 旧楼监控改造方案
- 培智五年级上次数学期末考试题
- 牛津译林版一年级上册英语第4单元第一课时课件
- 大班歌曲《小树叶》
- 大学英语四级词汇表带音标
- 脑室腹腔分流手术
- GM/T 0003.5-2012SM2椭圆曲线公钥密码算法第5部分:参数定义
- 2023年江苏银行校园招聘笔试题库及答案解析
- 企业风险内控之合同管理内部控制课件
- 小学心理健康教育人教五年级上册目录我的情绪我做主(参赛)
- 放射辐射安全防护培训
评论
0/150
提交评论