EDI转换成XML格式设计文档

EDI转换成XML格式设计文档

EDI格式说明

EDI,全称 Electronic Data Interchange,译名:电子数据交换。
它是由国际标准化组织(ISO)推出使用的国际标准,它是指一种为商业或行政事务处理,按照一个公认的标准,形成结构化的事务处理或消息报文格式,从计算机到计算机的电子传输方法,也是计算机可识别的商业语言。例如,国际贸易中的采购订单、装箱单、提货>单等数据的交换。

EDI格式标准

EDI电子数据交换是结构化的数据通过一定标准的报文格式从一个应用程序到另一个应用程序的电子化的交换,商业伙伴实施EDI,必须遵循一定的EDI报文标准。目前常用的标准主要有,美国标准ANSI X.12和欧洲标准EDIFACT。

smooks说明

Smooks是一个用于出力XML和非XML数据(CVS,EDI,Java)的JAVA可扩展框架。
主要有以下特性:

  1. JAVA绑定:根据数据源(XML,CSV,EDI...)活得JAVA对象,亦可以实现JAVA对象到数据源的格式化。
  2. 转化:数据格式之间的转化,如XML-XML,CSV-XML,EDI-XML.....
  3. 大数据处理:能处理大型数据(GBs)-分割,转换,路由到JMS,文件,数据库等。
  4. 数据完整性填充:利用数据库等数据源填充数据。
  5. 复杂数据验证
  6. 基于ORM框架的数据存储:可以使用持久层框架(如ibatis,hibernate...)或者DAO读取或者存储数据。
  7. 可以将以上特性结合使用。

使用smooks转换EDI到XML格式示例说明

DEI示例文件内容如下(input-message.edi)

HDR*1*0*59.97*64.92*4.95*Wed Nov 15 13:45:28 EST 2006
CUS*user1*Harry^Fletcher*SD
ORD*1*1*364*The 40-Year-Old Virgin*29.98
ORD*2*1*299*Pulp Fiction*29.99

DEI转换XML配置文件(edi-to-xml-order-mapping.xml)



    
    
    
        
            
            
            
            
            
            
        
        
            
            
                
                
            
            
        
        
            
            
            
            
            
        
    

转换后的格式如下


    
1 0 59.97 64.92 4.95 Wed Nov 15 13:45:28 EST 2006
user1 Harry Fletcher SD 1 1 364 The 40-Year-Old Virgin 29.98 2 1 299 Pulp Fiction 29.99

配置文件(edi-to-xml-order-mapping.xml)说明

  

segment:表示每组数据(一个定单,或者理解为一个bean)的分隔符。
field:表示元素分隔符(bean中的属分隔符)
component:子元素分隔符
sub-component:示例中没有用到。


转换根元素为根元素


把HDR部分转换成元素header


通过*分隔,提取第一个,转换成元素order-id


通过*分隔,提取第二个,转换成元素status-code

其他行比较类似
其中:


    
    

通过*分隔符,生成name元素,因为还有两个子元素,所以使用,子元素使用^分隔。

使用smooks转换代码

Locale defaultLocale = Locale.getDefault();
Locale.setDefault(new Locale("en", "IE"));
// Instantiate Smooks with the config...
Smooks smooks = new Smooks("smooks-config.xml");
try {
    // Create an exec context - no profiles....
    ExecutionContext executionContext = smooks.createExecutionContext();
    StringResult result = new StringResult();
    // Configure the execution context to generate a report...
    executionContext.setEventListener(new HtmlReportGenerator("target/report/report.html"));
    // Filter the input message to the outputWriter, using the execution context...
    smooks.filterSource(executionContext, new StreamSource(new ByteArrayInputStream(messageIn)), result);
    Locale.setDefault(defaultLocale);
    return result.getResult();
} finally {
    smooks.close();
}

ESB转换EDI到XML流程说明

  1. 在ESB数据库中配置好EDI转XML的流程(Flow),需要配置config属性,里面就是上面的DEI转换XML配置文件的内容
  2. 配置Flow执行”edi-2-xml-component”组件。
  3. 然后edi-2-xml-component组件获取配置的config和请求参数中的edi报文,调用Edi2XMLTransformer执行转换

ESB转换EDI到XML主要类

  1. DEI2XMLComponent.java
    从context获取请求要转换的EDI报文,从settings中分别获取smooks的转换配置,调用Edi2XMLTransformer类进行转换
    @Component("edi-2-xml-component")
    public class EDI2XMLComponent implements CustomComponent {
    private final static Edi2XMLTransformer EDI_2_XML_TRANSFORMER = new Edi2XMLTransformer();

         @Override
         public Object execute(MuleMessage message,Context context,Map settings){
             if(!settings.containsKey("config")){
                 String errorMessage = ExceptionMessageUtils.generate(ExceptionMessages.EDI_DEFECT_CONFIG_ERROR,"EDI转XML");
                 throw new DefectSettingException(ExceptionMessages.EDI_DEFECT_CONFIG_ERROR.getExceptionCode(),errorMessage);
             }
             String config = MapUtils.getString(settings,"config");
             String payload = String.valueOf(context.getPayload());
             return EDI_2_XML_TRANSFORMER.transformer(config,payload);
         } 
     }  
    
  2. Edi2XMLTransformer.java
    使用Smooks把EDI格式转换成XML格式
    public class Edi2XMLTransformer implements Transformer {
    @Override
    public String transformer(String config,String source){
    Smooks smooks = new Smooks();
    EDIReaderConfigurator ediReaderConfigurator = new EDIReaderConfigurator(config);
    smooks.setReaderConfig(ediReaderConfigurator);
    ExecutionContext executionContext = smooks.createExecutionContext();
    StringResult result = new StringResult();
    smooks.filterSource(executionContext,new StringSource(source),result);
    return result.getResult();
    }
    }

你可能感兴趣的:(EDI转换成XML格式设计文档)