webx-pull service

(1)概述

              1.pull service作用

                 实际上pull service就相当于提供工具类,可以将工具定义成Java而能够在vm模板中调用

 

              2.webx定义的pull service

 

[html] view plain copy  在CODE上查看代码片派生到我的代码片

  1. <services:pull>  
  2.     <!-- Webx3 tools。 -->  
  3.     <pull-factories:utils />  
  4.     <pull-factories:rundata-tool />  
  5.     <pull-factories:csrfToken />  
  6.     <pull-factories:form-tool />  
  7.     <pull-factories:control-tool />  
  8.     <pull-factories:uris-tool />  
  9. </services:pull>  

 

 

 

(2)自定义PullService

              1.定义工具类

 

[java] view plain copy  在CODE上查看代码片派生到我的代码片

  1. public class DomTool {  
  2.       public void addScript(String scriptURI) {  
  3.       }  
  4.       public void addCss(String cssURI) {  
  5.       }  
  6. }  

 

              2.实现ToolFactory接口

 

[java] view plain copy  在CODE上查看代码片派生到我的代码片

  1. public class MyToolFactory implements ToolFactory {  
  2.   
  3.     private boolean singleton = true;  
  4.   
  5.     private DomTool tool;  
  6.   
  7.     public void setSingleton(boolean singleton) {  
  8.         this.singleton = singleton;  
  9.     }  
  10.   
  11.     public Object createTool() throws Exception {  
  12.         if (this.singleton) {  
  13.             if (tool == null) {  
  14.                 tool = new DomTool();  
  15.             }  
  16.   
  17.             return tool;  
  18.         } else {  
  19.             return new DomTool();  
  20.         }  
  21.     }  
  22.   
  23.     public boolean isSingleton() {  
  24.         return this.singleton;  
  25.     }  
  26. }  


              3.暴露服务工具

 

 

 

[html] view plain copy  在CODE上查看代码片派生到我的代码片

  1. <services:pull>  
  2.     <pull-factories:factory id="domTool"  
  3.                             class="com.alibaba.sample.petstore.web.common.util.MyToolFactory" />  
  4. </services:pull>  


              4.vm中使用

 

 

 

[html] view plain copy  在CODE上查看代码片派生到我的代码片

  1. $domTool.addScript("scripts/test.js");  

 

最后欢迎大家访问我的个人网站:1024s

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值