Webx的services

简介:

Webx中提供了大量的serivce来处理,主要services如下:


 
 
  1. Form Service —— 提供基于HTML form的表单验证功能。 
  2. Template Service —— 提供基于文本的模板渲染的功能。 
  3. JSP Service —— 基于JSP的模板引擎,和Template Service配合,渲染JSP格式的模板文件。 
  4. Velocity Service —— 基于Velocity的模板引擎,和Template Service配合,渲染Velocity格式的模板文件。 
  5. Pipeline Service —— 读取配置,创建pipeline。Pipeline是一种可配置的程序流程控制技术,被webx用来控制HTTP请求的流程。 
  6. Mail Service —— 通过配置和编程的方法,方便地创建、发送、接收符合RFC标准的e-mail。 
  7. Pull Service —— 实现Pull-MVC的设计模式。 
  8. RunData Service —— 将HTTP请求中的诸多对象包装成一个更易于使用的接口,并且对HTTP response实现了buffer机制,是页面cache技术和页面layout技术的基础。 
  9. Upload Service —— 处理multipart/form-data类型的HTTP request。 
  10. URIBroker Service —— 动态生成任意类型的URL和URI。 

对应的处理类如下:



本文转自 tianya23 51CTO博客,原文链接:http://blog.51cto.com/tianya23/843464,如需转载请自行联系原作者

相关文章
|
7月前
|
XML Java 应用服务中间件
WebService - Axis2与Spring整合并发布多个service(同样使用services.xml)
WebService - Axis2与Spring整合并发布多个service(同样使用services.xml)
572 0
|
IDE Java Apache
OSGI+WebServices
OSGI+WebServices
113 0
Starting Out In Web Hosting: Alibaba Cloud For New Businesses
The web is where the majority of purchases begin, as today's tech-savvy consumers search online for the products they want or need.
18979 0
Starting Out In Web Hosting: Alibaba Cloud For New Businesses
|
安全 SQL
Preventing Security Breaches: The Benefits of a Web Application Firewall
If the benefits of cloud computing can be summarized in just one word, it would be an “enabler”.
2317 0
Preventing Security Breaches: The Benefits of a Web Application Firewall
|
Web App开发 缓存 监控
|
数据格式 XML 网络架构
|
JSON 应用服务中间件 数据格式
jersey (RESTful Web Service框架)
jersey是一个RESTful Web Service框架。web service即远程函数调用,通过该特性,在互联网中跨机器调用其他服务器上的函数,就像调用本地代码一样简单又方便。原理是框架把请求对象序列化为json形式的字符串,发送http请求到指定的服务器上,服务器端把json字符串再反序列化为对象,找到函数代码入口后开始执行,得到返回对象后序列化为json字符串,作为客户端htt
2628 0