All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gccloud.starter.plugins.camel.gateway.handler.ServiceHandler Maven / Gradle / Ivy

package com.gccloud.starter.plugins.camel.gateway.handler;

import org.apache.camel.Exchange;
import org.springframework.stereotype.Component;

/**
 * @author liuchengbiao
 * @date 2020-07-15 14:51
 */
@Component
public class ServiceHandler {

    /**
     * 处理转发
     *
     * @param exchange
     * @return
     */
    public String handle(Exchange exchange) {
        return "OK";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy