我根本无法从Liferay 7调用REST Web服务。我使用 Eclipse 创建了一个 REST 模块,默认情况下它在 build.gradle 中给了我以下条目:
dependencies {
compileOnly group: 'javax.ws.rs', name: 'javax.ws.rs-api', version: '2.0.1'
compileOnly group: "org.osgi", name: "org.osgi.service.component.annotations", version: "1.3.0"
}
调用 REST 网络服务的代码:
String uri = "http://RestServiceURL";
Client client = ClientBuilder.newClient();
WebTarget target = client.target(uri);
String result = target.request(MediaType.TEXT_PLAIN_TYPE)
.get().readEntity(String.class);
部署和调用 REST 服务时出现的错误:
Caused by: java.lang.ClassNotFoundException: org.glassfish.jersey.client.JerseyClientBuilder cannot be found by com.liferay.portal.remote.cxf.common_2.0.6
at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:444)
at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:357)
at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:349)
at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at javax.ws.rs.client.FactoryFinder.newInstance(FactoryFinder.java:115)
at javax.ws.rs.client.FactoryFinder.find(FactoryFinder.java:225)
at javax.ws.rs.client.ClientBuilder.newBuilder(ClientBuilder.java:86)
... 110 more
我尝试将以下条目添加到build.gradle
compile group: 'org.glassfish.jersey.core', name: 'jersey-client', version: '2.21'
是否有任何特定的条目可以使这项工作?
您是否正在导入 bnd.bnd 文件中的软件包?如果是,您可以尝试">分辨率:=可选"选项吗?它应该解决你的问题。
例如,您应该在bnd.bnd中编写以下内容:
导入包:com.sun.jersey.api.json;resolution:=optional;\com.sun.jersey.core.header;resolution:=optional;
请注意,您可能需要根据需要更改软件包名称,上面提到的只是一个例子。
我希望你已经参考了OSGi模块依赖博客:https://web.liferay.com/web/user.26526/blog/-/blogs/osgi-module-dependencies
如果你能分享bnd.bnd的内容,那将更有帮助。