zoukankan      html  css  js  c++  java
  • JAX-RS annotations

    @Path("resource_path"):
    The @Path annotation defines the path to the base URL or resource_path. The base URL is based on the application's name, the servlet, and the URL pattern from the web.xml configuration file.

    @PathParam:
    The @PathParam annotation is used to inject values from the URL into a method parameter. In this way, one can inject, say, the ID of a resource into the method for getting the correct object.

    @GET:
    The @GET annotation indicates that the method will answer to an HTTP GET request.

    @PUT:
    The @PUT annotation indicates that the method will answer to an HTTP PUT request.

    @POST:
    The @POST annotation indicates that the method will answer to an HTTP POST request.

    @DELETE:
    The @DELETE annotation indicates that the method will answer to an HTTP DELETE request.

    @Produces(MediaType.TEXT_PLAIN):
    The @Produces annotation defines which MIME type is delivered by a method annotated with any HTTP annotated methods. In the given example, a text (text/plain) is produced. Other examples would be application/xml or application/json.

    @Consumes(type):
    The @Consumes annotation defines which MIME type is consumed by this method.

  • 相关阅读:
    反序列化
    反序列化使用
    Serializer序列器
    DRF工程搭建
    JDK目录介绍
    Java环境变量配置
    Java语言的特性
    Java语言概述
    计算机编程语言介绍
    软件开发介绍
  • 原文地址:https://www.cnblogs.com/IcanFixIt/p/5117093.html
Copyright © 2011-2022 走看看