gpt4 book ai didi

java - 当我们在同一个方法上添加 @GET 和 @Consumes 时会发生什么

转载 作者:行者123 更新时间:2023-12-02 02:42:57 25 4
gpt4 key购买 nike

当我们想在同一个方法上同时写入@javax.ws.rs.GET和@javax.ws.rs.Consumes时,是否有任何场景或副作用?

javax.ws.rsConsumes 的文档说“容器负责确保调用的方法能够使用 HTTP 请求实体主体的媒体类型”并且 GET 没有主体,但允许使用这两种注释(即没有异常(exception)或任何警告)。

最佳答案

Oracle 文档说

The @Consumes annotation is used to specify the MIME media types of representations a resource can consume that were sent by the client.

文档链接:click !

我不认为会有副作用。以下是文档中的示例:

@POST
@Consumes("text/plain")
public void postClichedMessage(String message) {
// Store the message
}

关于java - 当我们在同一个方法上添加 @GET 和 @Consumes 时会发生什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57166899/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com