`
xcl8671061
  • 浏览: 2131 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

Webx3-介绍和开发实战

阅读更多
Webx2 特点
    Webx2 架构比较复杂
    两套容器混合 – Service容器&Spring容器
    跨容器注入难度大
    Xml 配置较为复杂
    开发较为复杂,难度较大
    简化架构
    简化Web 容器, 去掉 Service 容器
    敏捷开发
    减少机械和粘合代码
    降低开发复杂度
    简化容器Xml配置
    兼容性
    对网站向后兼容,改良式升级
    中文站,国际站,淘宝



二、Webx3总体架构


WEBX 3.0简介
What’s New?
主流化
基于Java5,框架本身支持Generic、Annotations
基于Spring框架
基于POJO/依赖注入编程
增强特性
基于XML Schema的配置文件
使Spring配置文件易读、易写
以组件的思维来扩展系统
生产模式/开发模式
保留Webx2中的优点
页面驱动
先建模板、再建程序
模板中“按需”取得工具对象(pull tools)
约定胜于配置
基于规则展示页面
screen/layout/control

比较:
Spring context成为一等公民,取消Service框架
Context结构完全同Spring MVC,两层结构,大为简化
子容器中的bean可取得root context中的对象
在Spring context中创建webx2 service context adapters,完全兼容webx2
取消Singleton Service Context,以root context取代其职责。
Adapter将所有对Singleton Service Context的调用全部转向root context。



Webx3架构变化总揽



三、Webx3 快速入门
Webx3 核心开发概念

1  Model
    基本类型:String,int,long
    复合类型: JavaBean
    集合类型: List, Array
2. View
    模板 Velocity
    Layout
3. Controller
    Screen/Action/Ctronol
    映射规则同 Webx2.x



代码篇:

1. 绑定环境变量
    void doGetRundata(TurbineRunData rundata)
    void doGetNavigator(Navigator nav)
    void doGetContext(Context context)
    void doGetRequestContext(RequestContext requestContext)
2.绑定Query参数
  基本类型及数组
  JavaBean及数组
    void doGetInt(@Param("aaa") int i)
    void doGetIntDefault(@Param(name = "aaa", defaultValue = "123") Integer i)
    void doGetIntArray(@Param("aaa") int[] i)
    void doGetIntegerArrayDefault(@Param(name = "aaa", defaultValues = { "123", "456" }) Integer[] i)
    void doGetIntegerList(@Param("aaa") List<Integer> i)
3.绑定FromService
    基本类型及数组
    JavaBean及数组
    校验失败是否不进入
    3.1 Form
        void doGetFormDefaultAnnotation(@FormData Form form)
        void doGetFormDontSkipAction(@FormData(skipIfInvalid = false) Form form)
    3.2 Group
        void doGetGroup(@FormGroup("myGroup1") Group group)
        void doGetGroupInstanceBean(@FormGroup(name = "myGroup1", instanceKey = "aaa") MyData data)
        void doGetGroupsBeansDontSkipAction(@FormGroups(name = “myGroup1”,skipIfInvalid = false),  Collection<MyData> data)
    3.3 Field
        void doGetField(@FormField(name = "field1", group = "myGroup1") Field field)




四、Webx3 架构新特性
配置篇
统一Spring容器
    只用 Spring 配置文件
     webx.xml
     pipeline.xml
     webx-*.xml
     uris.xml
    …
组件
    WebxContextLoaderListener
    装载/WEB-INF/webx.xml, /WEB-INF/webx-*.xml
    WebxFrameworkFilter
    拦截request,以便被webx容器处理
    LogConfiguratorListener
    初始化日志系统
服务Bean
    services:resource-loading
    services:request-contexts
    services:mapping-rules
    services:template
    services:pull
    services:data-resolver
    services:pipeline
    services:uris
Webx3 配置文件对比


Webx3 服务配置
1 RequestContext
<!-- 设置request/response/session。 -->
<services:request-contexts
    xmlns="http://www.alibaba.com/schema/services/request-contexts">
        <buffered />
        <lazy-commit />
        <parser />
        <set-locale defaultLocale="zh_CN" defaultCharset="UTF-8" />
        <session>
            <id>
                <cookie path="/" maxAge="0" httpOnly="true" />
            </id>
            <stores>
                <session-stores:cookie-store id="temporaryCookie">
                    <session-stores:cookie name="tmp" />
                </session-stores:cookie-store>
            </stores>
            <store-mappings>
                <match name="*" store="temporaryCookie" />
            </store-mappings>
        </session>
</services:request-contexts>
2 PipeLine.xml
<services:pipeline xmlns=http://www.alibaba.com/schema/services/pipeline/valves>
        <!-- 初始化turbine rundata,并在pipelineContext中设置可能会用到的对象(如rundata、utils),以便valve取得。 -->
        <prepareForTurbine />
        <!-- 预备webx所需的对象。 -->
        <prepareForWebx2 />
        <setLoggingContext />
        <!-- 分析URL,取得target。 -->
        <analyzeURL homepage="homepage" />
        <checkCsrfToken />
         <loop>
               … Valve
         </loop>
    </services:pipeline>
<services:pipeline xmlns=http://www.alibaba.com/schema/services/pipeline/valves>
    ………
    <loop>
            <choose>
                <when>
<pl-conditions:target-extension-condition extension="null, vm, jsp" />
                    <performAction />
                    <performTemplateScreen />
                    <renderTemplate />
                </when> 
                <when>
                   <pl-co ditions:target-extension-condition extension="do" />
                    <performAction />
                    <performScreen />
                </when>
                <otherwise>
                    <!-- 将控制交还给servlet engine。 -->
                    <exit />
                </otherwise>
            </choose>
         <breakUnlessTargetRedirected />
        </loop>
    </services:pipeline>
3 ModuleLoader
<!-- 装载模块。 -->
    <services:module-loader>
        <ml-factories:class-modules>
            <ml-factories:search-packages type="$1"
                packages="com.alibaba.sample.petstore.web.admin.module.*"
                includeAbstractClasses="true" />
       </ml-factories:class-modules>
        <ml-adapters:webx2-module-adapter />
    </services:module-loader>
4 PullService
<services:pull xmlns="http://www.alibaba.com/schema/services/pull/tools">
        <!-- 全局tools。 -->
        <services:tools>
            <!-- Webx3 tools。 -->
            <utils />
            <rundata-tool />
            <csrfToken />
        </services:tools>
        <!-- 每个request都会创建一次的tools。 -->
        <services:tools scope="request">
            <!-- Webx3 tools。 -->
            <control-tool />
            <!-- Webx2 tools。 -->
            <webx2-tool id="form" class="com.alibaba.service.form.FormTool" />
            <webx2-tool id="uri" class="com.alibaba.service.uribroker.URIBrokerTool" />
        </services:tools>
        <!-- 每个request都会创建一次的tools,但components之间共享同一个实例。 -->
        <services:tools scope="request" shareWithComponents="true">
            <!-- Webx3 tools。 -->
            <page-tool />
        </services:tools>
    </services:pull>
5  MappingRule
<services:mapping-rules xmlns="http://www.alibaba.com/schema/services/mapping-rules">
       <direct-module-rule id="action" />
        <!-- Target name => Screen module name (*.do) -->
        <direct-module-rule id="screen.notemplate" />
        <!-- Target name => Screen module name (*.jsp, *.vm) -->
        <fallback-module-rule id="screen" moduleType="screen" />
        <!-- Target name => Screen template name -->
        <direct-template-rule id="screen.template" templatePrefix="screen" />
        <!-- Target name => Layout template name -->
        <fallback-template-rule id="layout.template" templatePrefix="layout" />
        <!-- Target name => Control module name (setControl method) -->
        <direct-module-rule id="control.notemplate" />
        <fallback-module-rule id="control" moduleType="control" />
        <direct-template-rule id="control.template" templatePrefix="control" />
    </services:mapping-rules>
6 DataResolver
<!-- 支持注入参数,可以在这里扩展自己的参数绑定器 -->
    <services:data-resolver xmlns="http://www.alibaba.com/schema/services/data-resolver/factories">
        <turbine-rundata-resolver />
        <parameter-resolver />
        <form-resolver />
    </services:data-resolver>
7 Form
<services:form>
        <services:group name="addProduct">
            <services:field name="productId" displayName="产品ID">
                <required-validator>
                    <message>必须填写${displayName}</message>
                </required-validator>
                <custom-error id="duplicatedProductId">
                    <message>产品ID和已有产品冲突</message>
                </custom-error>
            </services:field>
          services:field name="picture" displayName="产品图片">
                <required-validator>
                    <message>必须上传产品图片</message>
                </required-validator>
                <uploaded-file-validator
                    contentType="image/gif, image/jpeg, image/pjpeg, image/jpg, image/png">
                    <message>${displayName}不是合法的图片文件</message>
                </uploaded-file-validator>
                <uploaded-file-validator maxSize="100K">
                    <message>${displayName}不能超过${maxSize}字节</message>
                </uploaded-file-validator>
            </services:field>
        </services:group>
    </services:form>
8 Rewrite
<services:request-contexts id="rewrite" sort="false">
  <parser />
    <rewrite>
    <!-- 永久重定向,301   -->
    <rule pattern="/test1/hello.htm">
    <substitution uri="/test1/new_hello.htm" flags="L,R=301" />
    </rule>
    <!-- 临时重定向,302,不保留参数   -->
    <rule pattern="/test2/hello.htm">
    <substitution uri="/test2/new_hello.htm" flags="L,R" />
    </rule>
    <!-- 临时重定向,302,保留参数   -->
    <rule pattern="/test2.4/hello.htm">
    <substitution uri="/test2.4/new_hello.htm" flags="L,R,QSA" />
    </rule>
Webx2.0/2.5 应用基本迁移步骤
1.Webx2/2.5  Webx3迁移指南
2.按指南修改基础配置
3.对应用回归测试
4.修改,重复 步骤3
5.发布应用
9 兼容2.0 Service
重要:
   对于中文站,国际站自己扩展的 Webx2.0 Service,可以按下面的方式移植:
<!-- Webx2兼容设置, 直接将旧配置copy过来即可 -->
    <services:webx2-instance-context xmlns="http://www.alibaba.com/schema/webx2-services">
        <services>
            <service name="PageAuthorizationService"
                class="com.alibaba.sample.petstore.DefaultPageAuthorizationService">
                <property name="access.descriptors">
                    <value>/petstore/${component}/access.xml</value>
                </property>
            </service>
        </services>
    </services:webx2-instance-context>
10 兼容2.0 Valve
重要:
   对于中文站,国际站自己扩展的 Webx2.0 PipeLine Valve,可以按下面的方式移植:
<!-- Webx2兼容设置, 直接将旧配置copy过来即可 -->
<beans:beans>
<services:pipeline xmlns=“http://www.alibaba.com/schema/services/pipeline/valves”>        
    <webx2-valve class=
           “com.alibaba.sample.petstore.web.common.auth.PageAuthorizationValve”/>
   </services:pipeline>
</beans:beans>

Spring-schema的扩展



1. Spring定义了三种接口,用来将Schema所描述的XML文件转换成
    Spring beans
    Bean Definition Parser
    Bean Definition Decorator
    Bean Definition Decorator for Attribute
    NamespaceHandler
         将XML NS和上述parsers/decorators关联起来;
         Webx 3 实现了此接口,做成了一套及其灵活的schema扩展机制。
2   扩展点(配置点,Configuration Point)
       Webx3定义了一个顶级的扩展点:services,
       Namespace为:“http://www.alibaba.com/schema/services"。
3.  捐献(Contribution)
    对指定扩展点的扩展,例如:“Velocity Engine”
    每个Contribution必须对应一个schema。
    每个Contribution必须对应一个bean definition parser
4.  组件
     可以捐献给指定的扩展点
分享到:
评论
1 楼 programming 2012-04-05  
很蛋痛的webx   官方给的demo是utf-8的,实际关联的jar source代码gbk的。

相关推荐

    paoding-webx3-solr-lucene

    总结来说,"paoding-webx3-solr-lucene"项目是一个结合了Web开发框架、中文分词工具和企业级搜索平台的解决方案,旨在提供高效、精准的中文搜索引擎。通过深入理解并利用这个项目,开发者可以更好地应对大数据时代的...

    webx-springExt整合eclipse插件

    3. **智能提示和语法高亮**:增强Eclipse对Webx-SpringExt特定语法的支持,提供代码补全和错误检测。 4. **部署工具**:简化Webx-SpringExt应用程序的部署流程,支持直接从Eclipse内部发布到服务器。 5. **调试支持*...

    citrus-webx-all-3.0.8.jar

    java运行依赖jar包

    webx3文档——web开发

    文档详细介绍了Webx各个组件的功能、原理和扩展方式,使得开发者能够深入理解Webx框架的工作机制。 总的来说,Webx是一个综合性的Java Web开发框架,它通过层次化的设计和资源管理,为开发者提供了一个成熟的、可...

    webx3学习的demo,以及留言板的小例子

    本压缩包包含了WebX3学习的示例和一个简单的留言板应用,这对于初学者理解WebX3的工作原理和开发流程非常有帮助。 首先,`message_board.sql` 文件很可能是用于创建留言板数据库结构的SQL脚本。在Web应用开发中,...

    淘宝框架 Webx3资料

    - **快速开发**:借助Webx3的自动化配置和约定优于配置的原则,开发团队可以更快地完成项目开发任务。 #### 五、总结 综上所述,Webx3框架凭借其成熟可靠、开放扩展的设计理念,在阿里巴巴集团内外得到了广泛的...

    webx3 PDF(阿里巴巴 前端web框架)

    ### Webx3 PDF(阿里巴巴前端Web框架):深入解析与技术要点 #### 引言 Webx是一款由阿里巴巴推出的前端Web框架,旨在提供一个高效、灵活且可扩展的基础架构来支持大规模Web应用的开发。本文章将从Webx框架的核心...

    Webx3中文指南, 非常详细!

    Webx3中文指南, 非常详细!

    webx

    3. **动态表单**:WebX 支持动态表单生成,允许开发者通过配置文件定义表单字段和验证规则,自动根据数据库结构生成表单,减少了重复代码。 4. **数据库操作**:WebX 提供了强大的数据库操作接口,支持SQL语句的...

    WEBX-Recordings-Controls-Automator:使用键盘输入来暂停播放会议记录,使用箭头快进10秒或快退10秒

    请转到“设置”&gt;“安全和隐私”,然后单击“仍然打开”3)再次点击扩展文件4)打开Safari并按CMG +,或打开首选项5)浏览至扩展程序并启用WEBX-Recordings-Controls-Automator火狐浏览器仍在开发中

    WebX3 Guide Book学习指南

    通过阅读《WebX3 Guide Book学习指南》,开发者不仅可以了解到Webx框架的基本概念和优势,还能获得实际操作的指导,从而在实际项目中更好地运用Webx,提升开发效率和应用质量。这本书是Webx框架学习者的宝贵资源,...

    Webx及框架简介

    【Webx及框架简介】 ...最后,对于初学者,可以参考提供的PPT材料,如"Webx及框架简介(1).ppt"和"Webx及框架简介(2).ppt",它们通常包含框架的基本介绍、使用示例和最佳实践,能够帮助深入理解Webx的运作原理和优势。

    Webx3_Guide_Book.pdf 用户指南

    Webx3_Guide_Book 用户指南 2001年,阿里巴巴内部开始使用Java Servlet作为WEB服务器端的技术,以取代原先的 Apache HTTPD server和mod_perl的组合。 • 2002年,选择Jakarta Turbine作为WEB框架,并开始在此之上...

    webx总结

    5. **实战经验分享**:分享使用Webx开发项目的实践经验,包括遇到的问题、解决方案以及最佳实践。 6. **自定义与扩展**:讲解如何根据项目需求自定义Request Context,以实现更高级的功能或者优化性能。 7. **案例...

    最简单的webx代码

    在本文中,我们将深入探讨WebX的基础知识、核心概念以及如何通过`login-webx3-tutorial`这个教程来学习和理解WebX。 首先,WebX的设计理念是提供一种易于使用的、模块化的开发方式,它将复杂的Web应用逻辑分解为可...

    Webx3_Guide_Book.rar_tapeov2_webx_webx 开源框架

    Webx3 是阿里巴巴开源的一款强大的Java Web开发框架,它基于MVC(Model-View-Controller)设计模式,旨在简化企业级应用的开发流程,提高开发效率。Webx3 提供了丰富的功能,包括但不限于请求处理、数据持久化、事务...

    webx入门介绍

    webx框架是淘宝开发的比较流行的框架,这个是webx框架的入门介绍

    淘宝WEBX框架详解

    通过深入学习WEBX框架,开发者可以更好地理解和实践淘宝的开发流程,从而在实际工作中更快速地适应和产出。 **1. WEBX框架的核心特性** WEBX框架的核心特性包括模块化、面向服务的设计、灵活的数据访问层以及强大...

    Webx3日志系统的配置

    Webx3支持多种流行的Java日志框架,如Log4j、Logback和Java Util Logging。这里以Log4j为例,因为其配置灵活且广泛使用。你需要在项目的类路径下添加Log4j的JAR文件,并创建一个名为`log4j.properties`或`log4j.xml`...

Global site tag (gtag.js) - Google Analytics