有没有一种方法可以用Java以编程方式生成BPEL?

我尝试使用BPEL Eclipse Designer API编写以下代码:

 Process process = null;
 try {



        Resource.Factory.Registry reg =Resource.Factory.Registry.INSTANCE;

        Map<String, Object> m = reg.getExtensionToFactoryMap();

        m.put("bpel", new BPELResourceFactoryImpl());//it works with XMLResourceFactoryImpl()



         //create resource

         URI uri =URI.createFileURI("myBPEL2.bpel");



         ResourceSet rSet = new ResourceSetImpl();

          Resource bpelResource = rSet.createResource(uri);



          //create/populate process

          process = BPELFactory.eINSTANCE.createProcess();

          process.setName("myBPEL");

          Sequence mySeq = BPELFactory.eINSTANCE.createSequence();

          mySeq.setName("mainSequence");

          process.setActivity(mySeq);



          //save resource

          bpelResource.getContents().add(process);

          Map<String,String> map= new HashMap<String, String>();
          map.put("bpel", "http://docs.oasis-open.org/wsbpel/2.0/process/executable");
          map.put("tns", "http://matrix.bpelprocess");
          map.put("xsd", "http://www.w3.org/2001/XMLSchema");
          bpelResource.save(map);

    }



    catch (Exception e) {

          e.printStackTrace();

    }


}

但我收到一个错误:



我读了Simon的this message:



还有其他可以帮助的API吗?

最佳答案

您可能想尝试JAXB。它可以帮助您将官方的BPEL XSD转换为Java类。您可以使用这些类来构造BPEL文档并将其输出。

关于java - 以编程方式生成BPEL文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15353097/

10-12 02:39