我读了很多关于如何在 payara 5 上将 jackson 替换为 moxy 的内容,但从未找到好的解决方案,所以我创建了一个小项目,希望有人能帮助我。
pom.xml
<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>
应用程序.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;
}
}
简单服务.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;
}
}
PojoEntity.java
public class PojoEntity {
private String teste1;
@JsonProperty("differentName")
private String teste2;
//getters and setters
}
将此微应用程序部署到 payara 5 并请求端点http://localhost:8080/micro-sample/api/sample/greet2后,结果是(如预期的那样):
{"teste1":"TesteValue1","differentName":"TesteValue2"}
Payara 正在使用 Jackson 而不是 moxy。:) 好的!!!
===============================================
我的问题是当我使用微配置文件到达我自己的端点时:
SimpleServiceMicroprofileApi.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();
}
微服务.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();
}
}
并在App.java上的 getClasses 方法上添加这一行:
resources.add(MicroService.class);
使用此修改重新部署后,我们可以访问http://localhost:8080/micro-sample/api/micro/recallGreet2,结果是:
{"teste1":"LOL","differentName":null}
显然,微配置文件一直使用 moxy 并忽略 PojoEntity 属性“不同名称”。
有人知道在这个例子中完全替换杰克逊的 moxy 的方法吗?
这个项目在这里可用获得,以便可以测试这种情况。:)
帕亚拉版本:5.183
提前致谢。