Package javax.ws.rs



http://docs.oracle.com/javaee/6/api/javax/ws/rs/package-summary.html

Annotation Types Summary
ApplicationPathIdentifies the application path that serves as the base URI for all resource URIs provided by Path.
ConsumesDefines the media types that the methods of a resource class or MessageBodyReader can accept.
CookieParamBinds the value of a HTTP cookie to a resource method parameter, resource class field, or resource class bean property.
DefaultValueDefines the default value of request metadata that is bound using one of the following annotations: PathParam, QueryParam, MatrixParam, CookieParam, FormParam, or HeaderParam.
DELETEIndicates that the annotated method responds to HTTP DELETE requests
EncodedDisables automatic decoding of parameter values bound using QueryParam, PathParam, FormParam or MatrixParam.
FormParamBinds the value(s) of a form parameter contained within a request entity body to a resource method parameter.
GETIndicates that the annotated method responds to HTTP GET requests
HEADIndicates that the annotated method responds to HTTP HEAD requests
HeaderParamBinds the value(s) of a HTTP header to a resource method parameter, resource class field, or resource class bean property.
HttpMethodAssociates the name of a HTTP method with an annotation.
MatrixParamBinds the value(s) of a URI matrix parameter to a resource method parameter, resource class field, or resource class bean property.
OPTIONSIndicates that the annotated method responds to HTTP OPTIONS requests
PathIdentifies the URI path that a resource class or class method will serve requests for.
PathParamBinds the value of a URI template parameter or a path segment containing the template parameter to a resource method parameter, resource class field, or resource class bean property.
POSTIndicates that the annotated method responds to HTTP POST requests
ProducesDefines the media type(s) that the methods of a resource class or MessageBodyWriter can produce.
PUTIndicates that the annotated method responds to HTTP PUT requests
QueryParamBinds the value(s) of a HTTP query parameter to a resource method parameter, resource class field, or resource class bean property.
优化这段代码// // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package com.api.Shenhh; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import javax.servlet.ServletOutputStream; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.Context; import weaver.conn.RecordSet; @Path("/Shenhh") public class Service_Test { public Service_Test() { } @GET @Path("/test01") @Produces({"application/json"}) public void selectAll(@Context HttpServletRequest req, @Context HttpServletResponse res) { try { req.setCharacterEncoding("utf-8"); res.setContentType("text/html;charset=utf-8"); ServletOutputStream out = res.getOutputStream(); JSONObject jsonObject = new JSONObject(); JSONArray jsonArray = new JSONArray(); RecordSet recordSet = new RecordSet(); String sql = "select * from formtable_main_20"; recordSet.execute(sql); while(recordSet.next()) { jsonObject.put("name", recordSet.getString("xm")); jsonObject.put("bm", recordSet.getString("bm")); jsonObject.put("date", recordSet.getString("rq")); jsonObject.put("sw", recordSet.getString("swdksj")); jsonObject.put("xw", recordSet.getString("xwdksj")); jsonObject.put("sfkg", recordSet.getString("sfkg")); jsonArray.add(jsonObject); out.print(jsonArray.toString()); out.println("1沈哈哈!!!!!!!!!!!!!!!!!!!"); } } catch (Throwable var8) { throw var8; } } }
03-09
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值