如何添加在骡子连接器的下拉列表中的项目?(how do i add a drop down list

2019-11-02 05:49发布

我做了一个骡子连接器,一切都很正常。 我得到了一个HTTP出站连接4个主要性能:URL,端口,路径以及方法。

我想成为一个下拉列表与值的方法:GET,POST。

难道你们知道该怎么办呢? 需要什么样的注释的情况下,这是解决这个问题的方式来使用呢? 或者它被骡子添加地图或枚举属性时识别?

这是我目前简单的代码

/**
 * This file was automatically generated by the Mule Development Kit
 */
package com.web.testcomponent;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

import org.mule.api.MuleEventContext;
import org.mule.api.annotations.Configurable;
import org.mule.api.annotations.Module;
import org.mule.api.annotations.Processor;
import org.mule.api.annotations.display.Placement;
import org.mule.api.annotations.expressions.Lookup;
import org.mule.api.annotations.param.Default;
import org.mule.api.annotations.param.Optional;
import org.mule.api.annotations.param.Payload;

/**
 * Generic module
 *
 * @author MuleSoft, Inc.
 */
@Module(name="testcomponent", schemaVersion="1.0-SNAPSHOT", friendlyName="HTTP/S Component", description="This is custom HTTP/S Component")
public class TestComponentModule
{

    @Lookup("myMuleContext")
    private MuleEventContext context;

    /**
     * Connection URL
     */
    @Configurable
    @Placement(order=1,group="Connection",tab="General")
    private String url;

    /**
     * Connection Port
     */
    @Configurable
    @Placement(order=2,group="Connection",tab="General")
    private String port;

    /**
     * Connection Path
     */
    @Configurable
    @Placement(order=3,group="Connection",tab="General")
    private String path;    

    /**
     * Connection Method (GET or POST)
     */
    @Configurable
    @Default(value="GET")
    @Optional
    @Placement(order=4,group="Connection",tab="General")
    private String method;

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public String getPort() {
        return port;
    }

    public void setPort(String port) {
        this.port = port;
    }

    public String getPath() {
        return path;
    }

    public void setPath(String path) {
        this.path = path;
    }

    public String getMethod() {
        return method;
    }

    public void setMethod(String method) {
        this.method = method;
    }

    public MuleEventContext getContext() {
        return context;
    }

    public void setContext(MuleEventContext context) {
        this.context = context;
    }

    /**
     * Custom processor
     *
     * {@sample.xml ../../../doc/TestComponent-connector.xml.sample testcomponent:test-processor}
     *
     * @param content Random content to be processed
     * @param payload The String payload itself
     * @return Some string
     */
    @Processor
    public String testProcessor(@Payload String payload)
    {       
        HttpURLConnection conn = null;

        try {
            URL url = new URL(getUrl() + "/" + getPath());
            conn = (HttpURLConnection) url.openConnection();
            conn.setRequestMethod(getMethod());
            conn.setRequestProperty("Accept", "application/json");

            if(conn.getResponseCode() != HttpURLConnection.HTTP_OK) {
                throw new RuntimeException("Failed -> HTTP error code : " + conn.getResponseCode());
            }

            BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String output, buffer;
            output = "";
            while((buffer = br.readLine()) != null) {
                output += buffer;
            }

            payload = output;
            conn.disconnect();
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        return payload;
    }
}

Answer 1:

我用枚举没有问题:

public enum HttpMethod
{
    GET, POST
};

@Configurable
@Default(value = "GET")
@Optional
@Placement(order = 4, group = "Connection", tab = "General")
private HttpMethod method;

难道这不是对你的工作吗?

作为一个侧面说明,看你有什么@Processor方法做,我想知道,如果你不重新发明@RestCall处理器。 也是为什么使用原始HttpURLConnection时候可以执行与HTTP调用MuleClient



文章来源: how do i add a drop down list item in a mule connector?