1

我正在尝试创建一个简单的 mule 流,它提取标头并将其传递user-agent给 REST 组件,该组件根据提取的用户代理返回状态代码。

这是我的骡流

  <flow name="restflowFlow1" doc:name="restflowFlow1">
        <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="9595" path="rest" doc:name="HTTP"/>
        <jersey:resources doc:name="REST">
            <component class="com.test.RestClass"/>
        </jersey:resources>
    </flow>

这是对应的类

@Path("restClass")
public class RestClass implements Callable {

    public Response getExample(String toBeValidated)
    {

        if(toBeValidated.contains("Apple"))
        {
            return Response.status(Status.OK).entity("hello " + toBeValidated).build();
        }
        return Response.status(Status.UNAUTHORIZED).entity("hello " + toBeValidated).build();
    }

    @Override
    public Object onCall(MuleEventContext eventContext) throws Exception {
        String requiredHeader= eventContext.getMessage().getProperty("user-agent", PropertyScope.INBOUND);

        return getExample(requiredHeader);
    }
}

当我尝试运行上述流程时,出现以下错误:

ERROR 2014-11-21 13:49:47,909 [[muletestproject].connector.http.mule.default.receiver.02] org.mule.exception.DefaultMessagingExceptionStrategy: 
********************************************************************************
Message               : Failed to invoke JerseyResourcesComponent{restflowFlow1.component.418586223}. Component that caused exception is: JerseyResourcesComponent{restflowFlow1.component.418586223}. Message payload is of type: String
Code                  : MULE_ERROR--2
--------------------------------------------------------------------------------
Exception stack is:
1. String index out of range: -1 (java.lang.StringIndexOutOfBoundsException)
  java.lang.String:1875 (null)
2. Failed to invoke JerseyResourcesComponent{restflowFlow1.component.418586223}. Component that caused exception is: JerseyResourcesComponent{restflowFlow1.component.418586223}. Message payload is of type: String (org.mule.component.ComponentException)
  org.mule.component.AbstractComponent:144 (http://www.mulesoft.org/docs/site/current3/apidocs/org/mule/component/ComponentException.html)
--------------------------------------------------------------------------------
Root Exception stack trace:
java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    at java.lang.String.substring(String.java:1875)

PS我对骡子很陌生。所以我也对任何其他优雅的方法持开放态度。

4

2 回答 2

0

要实现可调用的 doenst 对 Jerse 很有意义,您应该使用 JAX-RS 注释,即:

package org.mule.transport.jersey;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.PathParam;

@Path("/helloworld")
public class HelloWorldResource {

    @GET
    @Produces("text/plain")
    @Path("/{name}")
    public String sayHelloWithUri(@PathParam("name") String name) {
        return "Hello " + name;
    }
}

如此处所述。

于 2014-11-22T00:22:03.010 回答
0

在 java 组件中实现 Callable 使其具有从流 xml 调用的功能。在您的情况下,不需要 Callable 只需使用 JAX-RS 注释来注释您的服务类,以便球衣可以在您的类中发布公共方法。当您使用类似于您的服务类路径的地址发布请求时,jersey 将自动调用相应的方法。

import javax.ws.rs.Path;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;

@Path("restClass")
public class RestClass {
public Response getExample(@QueryParam("param1") String param1) {
     return Response.status(Status.OK).entity("hello " + param1).build();
  }
}

这应该适合你。

于 2015-09-09T13:14:34.543 回答