0

例如,我有组件导出简单的 Web 服务:

@Component(
 property = ["osgi.jaxrs.resource=true"],
 configurationPid = ["some.file.config"]
)
@Path("/service")
open class Service {

 @GET
 @Produces("text/plain")
 @Path("/getData")
 fun getData(): Response = Response.ok("Some data").build()

 @POST
 @Consumes("text/plain")
 @Path("/setData")
 fun registered(inputData: String): Response = Response.ok().build()
}

创建另一个组件是发布另一个服务的唯一方法吗?我可以使用单个组件以某种方式做到这一点吗?

4

0 回答 0