Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个 Web 应用程序,它有一个名为 Product 的类,我想与 JAX-WS Web 服务共享它。
基本上,Web 应用程序将 Product 类的实例发送到 Web 服务,Web 服务对其字段进行一些更改,并将其作为返回类型发回。
是否可以通过这种方式在 Java 中共享相同的类型?如果不是,解决这个问题的方法是什么?
您需要将公共类打包到 JAR 文件中,并将其添加到客户端和服务中,就像任何其他 3rd 方 JAR 一样。