我有一个简单的java程序,带有main方法来执行。执行时我需要传递一些参数,如下所示:
class Main{
public static void main(String[] args) {
initializeBaseClass();
}
以上程序运行:
java -classpath C;/test/sample.jar -mainClass com.test.SampleTest
它执行并成功运行。
现在我需要从Mule esb运行它。 哪个是调用它并从mule esb执行的最佳方法。
我尝试过添加java组件并添加属性键/值,但它不起作用。我如何从骡子传递参数? 有没有更好的方法来使用Spring或脚本语言,或MEL?
答案 0 :(得分:1)
<spring:beans>
<spring:bean id="transmission" class="com.test.InvokeMain"/>
</spring:beans>
<flow name="test" ...
<set-payload value="-mainclass com.test.Abcd -driver org.hsqldb.jdbc.JDBCDriver/>
<invoke object-ref="transmission" method="invoke" methodArgumentTypes="java.lang.String" methodArguments="#[payload]" name="transmissionAPI"/>
</flow>
和主要类是:
import com.test.Main;
public class InvokeTransmission {
public void invoke(String params){
String[] res = params.split("\\s+");
Main.main(res);
}
}
答案 1 :(得分:0)
为什么不使用Mule stdio IN 组件在mule studio中输入...例如: - 在Mule流程中: -
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:tracking="http://www.mulesoft.org/schema/mule/ee/tracking" xmlns:mulexml="http://www.mulesoft.org/schema/mule/xml" xmlns:jdbc-ee="http://www.mulesoft.org/schema/mule/ee/jdbc" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:file="http://www.mulesoft.org/schema/mule/file" xmlns:stdio="http://www.mulesoft.org/schema/mule/stdio" xmlns:jdbc="http://www.mulesoft.org/schema/mule/jdbc" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" xmlns:core="http://www.mulesoft.org/schema/mule/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="EE-3.4.2" xsi:schemaLocation="http://www.mulesoft.org/schema/mule/file http://www.mulesoft.org/schema/mule/file/current/mule-file.xsd
http://www.mulesoft.org/schema/mule/stdio http://www.mulesoft.org/schema/mule/stdio/current/mule-stdio.xsd
http://www.mulesoft.org/schema/mule/ee/jdbc http://www.mulesoft.org/schema/mule/ee/jdbc/current/mule-jdbc-ee.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/xml http://www.mulesoft.org/schema/mule/xml/current/mule-xml.xsd
http://www.mulesoft.org/schema/mule/ee/tracking http://www.mulesoft.org/schema/mule/ee/tracking/current/mule-tracking-ee.xsd">
<stdio:connector name="stdio" messageDelayTime="1000" promptMessage="Enter a parameter :" doc:name="STDIO" validateConnections="true"></stdio:connector>
<flow name="InputFlow" doc:name="InputFlow">
<stdio:inbound-endpoint system="IN" responseTimeout="10000" connector-ref="stdio" doc:name="STDIO"></stdio:inbound-endpoint>
<custom-transformer class="InputProccesser" doc:name="Java"/>
<logger message="Payload is :- #[message.payload]" level="INFO" doc:name="Logger"/>
</flow>
</mule>
现在我们在流程中使用了<custom-transformer class="InputProccesser" doc:name="Java"/>
InputProccesser 是将处理输入消息的java类...
现在,您创建一个名为 InputProccesser 的java类: -
import java.util.List;
import java.util.Map;
import org.mule.api.MuleMessage;
import org.mule.api.transformer.TransformerException;
import org.mule.transformer.AbstractMessageTransformer;
public class InputProccesser extends AbstractMessageTransformer {
@Override
public Object transformMessage(MuleMessage message, String outputEncoding)
throws TransformerException {
String mes=(String) message.getPayload();
int input=0;
try
{
input = Integer.parseInt(mes);
System.out.println(" Your input variable is "+input);
return input;
}
catch(NumberFormatException nFE)
{
System.out.println("Please enter a number");
return input;
}
}
}
现在您可以根据您的要求修改 java类来处理输入消息,并且可以在运行mule应用程序后使用 Mule stdio组件来获取输入