已阅读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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 嘀嘀汽车租赁合同范本
- 国网公司标准合同范本
- 垄断协议中的民事合同
- 土地承包绿化合同范本
- 地皮转让中介合同范本
- 土地整改施工合同范本
- 地产销售协议合同范本
- 城镇地皮购买合同范本
- 国内个人旅游合同范本
- 地皮转让流转合同范本
- 2025年无人机巡检电力设施项目收益分析可行性研究报告
- 教职工安全培训应急知识课件
- 2025年陕西省招聘社区工作者考试应知应会题库(附答案)
- 2025版安全生产法
- 《教师职业道德与专业发展》自考试题及答案(一)
- 商场消防安全用电知识培训课件
- 《基层常见病诊疗指南》
- 货运信息中介公司领导管理细则
- 2025年中国出版集团有限公司校园招聘笔试参考题库附带答案详解
- 集装箱驾驶员管理制度
- 电视纪录片拍摄的策划方案
评论
0/150
提交评论