已阅读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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 输血应急预案演练(共3篇)
- 2025年公路工程试验检测师资格考试公共基础题库及答案
- 某学校开展中小学在职教师有偿补课问题专项整治实施方案
- 电教设备管理员工培训
- 2025版呼吸系统疾病常见症状及护理指南
- 申请最佳员工
- 湖南矿山宣教题库及答案
- 2023年教师资格之幼儿保教知识与能力全真模拟考试试卷B卷含答案
- 2025新版药品GCP考试题库及答案
- 2025文学概论配套题库及答案
- 鸿蒙应用开发案例实战(ArkTS版)(AI助学)(微课版) 课件全套 项目1-7 初探HarmonyOS开发 个性化设置应用 - 融会贯通 七彩天气App开发之旅
- 藏菜生长技术指导
- 2025至2030内窥镜市场前景分析及发展趋势分析与未来投资战略咨询研究报告
- 寝室卫生课件
- 政府EPC工程总承包管理课件
- 管理咨询的调研方法与实践
- 中国无线路由器行业市场全景评估及发展战略规划报告
- JJF(晋) 117-2025 饮用水售水机校准规范
- TCITS 288-2025 饮用水处理装置高效净化全氟及多氟化合物试验方法及分级要求
- 上海市闵行区民办上宝中学2025届英语八年级第二学期期中达标检测模拟试题含答案
- 企业职务职级管理制度
评论
0/150
提交评论