如何在Payara 5上用杰克逊代替Moxy

时间:2018-11-23 15:22:13

标签: java jackson moxy payara microprofile

我读了很多关于如何在payara 5上用杰克逊代替moxy的知识,但是从来没有实现好的解决方案,所以我创建了一个小项目,希望有人能帮助我。

pom.xml

True

App.java

<dependencies>
    <dependency>
        <groupId>javax</groupId>
        <artifactId>javaee-web-api</artifactId>
        <version>${version.javaee}</version>
        <scope>provided</scope>
    </dependency>

    <!-- https://mvnrepository.com/artifact/org.glassfish.jersey.media/jersey-media-json-jackson -->
    <dependency>
        <groupId>org.glassfish.jersey.media</groupId>
        <artifactId>jersey-media-json-jackson</artifactId>
        <version>2.27</version>
    </dependency>

    <dependency>
        <groupId>org.eclipse.microprofile</groupId>
        <artifactId>microprofile</artifactId>
        <type>pom</type>
        <version>1.4</version>
    </dependency>
<dependencies>

SimpleService.java

import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;

import org.glassfish.jersey.jackson.JacksonFeature;

@ApplicationPath("/api")
public class App extends Application {

@Override
public Set<Class<?>> getClasses() {
    Set<Class<?>> resources = new java.util.HashSet<>();
    resources.add(JacksonFeature.class);

    resources.add(SimpleService.class);
    return resources;
}

}

PojoEntity.java

@Path("sample")
public class SimpleService {

@Path("greet2")
@GET
@Produces(MediaType.APPLICATION_JSON)
public PojoEntity doGreet2() {
    PojoEntity pojoEntity = new PojoEntity();
    pojoEntity.setTeste1("TesteValue1");
    pojoEntity.setTeste2("TesteValue2");
    return pojoEntity;
}
}

将此微型应用程序部署到payara 5中并请求端点http://localhost:8080/micro-sample/api/sample/greet2后,结果是(如预期的那样):

public class PojoEntity {


private String teste1;

@JsonProperty("differentName")
private String teste2;

//getters and setters
}

Payara使用Jackson代替了moxy。 :)很好!!!

============================================= < / p>

我的问题是当我使用微型配置文件到达自己的端点时

SimpleServiceMicroprofileApi.java

{"teste1":"TesteValue1","differentName":"TesteValue2"}

MicroService.java

import javax.enterprise.context.Dependent;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

import org.eclipse.microprofile.rest.client.inject.RegisterRestClient;

@Dependent
@RegisterRestClient
@Produces(MediaType.APPLICATION_JSON)
public interface SimpleServiceMicroprofileApi {

    @Path("api/sample/greet2")
    @GET
    @Produces(MediaType.APPLICATION_JSON)
    public PojoEntity recallGreet2();
}

并在getClasses方法的 App.java 上添加以下行:

    package fish.payara.micro.sample;

import java.net.MalformedURLException;
import java.net.URL;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

import org.eclipse.microprofile.rest.client.RestClientBuilder;

@Path("micro")
public class MicroService {

    @Path("recallGreet2")
    @GET
    @Produces(MediaType.APPLICATION_JSON)
    public PojoEntity recallGreet2() throws MalformedURLException {
        PojoEntity pojoEntity = new PojoEntity();
        pojoEntity.setTeste1("LOL");
        pojoEntity.setTeste2("LOL2");

        URL apiUrl = new URL("http://localhost:8080/micro-sample");
        SimpleServiceMicroprofileApi playlistSvc = RestClientBuilder.newBuilder().baseUrl(apiUrl)
                .build(SimpleServiceMicroprofileApi.class);

        return playlistSvc.recallGreet2();
    }
}

在进行了此修改的重新部署之后,我们可以访问http://localhost:8080/micro-sample/api/micro/recallGreet2,结果是:

resources.add(MicroService.class);

显然,微配置文件继续使用moxy并忽略PojoEntity属性“ differentName”。

在此示例中,有人知道完全替代杰克逊的moxy吗?

此项目可用here可以测试这种情况。 :)

Payara版本:5.183

谢谢。

1 个答案:

答案 0 :(得分:1)

您只需要在SimpleServiceMicroprofileApi上注册JacksonFeature:

@RegisterProvider(JacksonFeature.class)

这应该使它起作用;)