package org.apache.cxf.phase.PhaseInterceptorChain public synchronized boolean doIntercept(Message message) { //循环遍历执行拦截器handleMessage(message); while (state == State.EXECUTING && iterator.hasNext()) { try { Interceptor<Message> currentInterceptor = (Interceptor<Message>)iterator.next(); if (isFineLogging) { LOG.fine("Invoking handleMessage on interceptor " + currentInterceptor); } //System.out.println("-----------" + currentInterceptor); currentInterceptor.handleMessage(message); if (state == State.SUSPENDED) { // throw the exception to make sure thread exit without interrupt throw new SuspendedInvocationException(); } } catch (SuspendedInvocationException ex) { // we need to resume from the same interceptor the exception got originated from if (iterator.hasPrevious()) { iterator.previous(); } pause(); throw ex; } catch (RuntimeException ex) { ................. } } return state == State.COMPLETE; } finally { CURRENT_MESSAGE.set(oldMessage); } } package org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor; public void handleMessage(Message message) { //message=org.apache.cxf.message.XMLMessage@9c494f43 try { processRequest(message); } catch (RuntimeException ex) { .. } } package org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor; private void processRequest(Message message) { .................... OperationResourceInfo ori = null; ........... MultivaluedMap<String, String> values = new MetadataMap<String, String>(); .................... //Process parameters try { //解析请求方法的参数列表。 List<Object> params = JAXRSUtils.processParameters(ori, values, message); message.setContent(List.class, params); } catch (Exception ex) { .............. } //Message contains following information: PATH, HTTP_REQUEST_METHOD, CONTENT_TYPE, InputStream. package org.apache.cxf.jaxrs.utils.JAXRSUtils; public static List<Object> processParameters(OperationResourceInfo ori, MultivaluedMap<String, String> values, Message message) throws IOException, WebApplicationException { //得到 请求处理的方法public com.ym.box.data.ReturnData //com.ym.box.LogBoxResource.mobileLog(com.ym.box.data.LogBoxRequest) Method method = ori.getMethodToInvoke(); //得到请求方法参数类型[class com.ym.box.data.LogBoxRequest] Class<?>[] parameterTypes = method.getParameterTypes(); Parameter[] paramsInfo = ori.getParameters().toArray(new Parameter[]{}); Method annotatedMethod = ori.getAnnotatedMethod(); Type[] genericParameterTypes = annotatedMethod == null ? method.getGenericParameterTypes() : annotatedMethod.getGenericParameterTypes(); Annotation[][] anns = annotatedMethod == null ? null : annotatedMethod.getParameterAnnotations(); List<Object> params = new ArrayList<Object>(parameterTypes.length); //循环解析请求方法参数,并得到装配完成的参数对象。 for (int i = 0; i < parameterTypes.length; i++) { Class<?> param = parameterTypes[i]; Type genericParam = genericParameterTypes[i]; if (genericParam instanceof TypeVariable) { genericParam = InjectionUtils.getSuperType(ori.getClassResourceInfo().getServiceClass(), (TypeVariable<?>)genericParam); } if (param == Object.class) { param = (Class<?>)genericParam; } else if (genericParam == Object.class) { genericParam = param; } Object paramValue = processParameter(param, genericParam, anns == null ? new Annotation[0] : anns[i], paramsInfo[i], values, message, ori); params.add(paramValue); } return params; } package org.apache.cxf.jaxrs.utils.JAXRSUtils; private static Object processParameter(Class<?> parameterClass, Type parameterType, Annotation[] parameterAnns, Parameter parameter, MultivaluedMap<String, String> values, Message message, OperationResourceInfo ori) throws IOException, WebApplicationException { InputStream is = message.getContent(InputStream.class); if (parameter.getType() == ParameterType.REQUEST_BODY) { String contentType = (String)message.get(Message.CONTENT_TYPE); if (contentType == null) { org.apache.cxf.common.i18n.Message errorMsg = new org.apache.cxf.common.i18n.Message("NO_CONTENT_TYPE_SPECIFIED", BUNDLE, ori.getHttpMethod()); LOG.fine(errorMsg.toString()); contentType = MediaType.WILDCARD; } return readFromMessageBody(parameterClass, parameterType, parameterAnns, is, MediaType.valueOf(contentType), ori.getConsumeTypes(), message); } else if (parameter.getType() == ParameterType.CONTEXT) { return createContextValue(message, parameterType, parameterClass); } else { return createHttpParameterValue(parameter, parameterClass, parameterType, parameterAnns, message, values, ori); } } package org.apache.cxf.jaxrs.utils.JAXRSUtils; private static <T> T readFromMessageBody(Class<T> targetTypeClass, Type parameterType, Annotation[] parameterAnnotations, InputStream is, MediaType contentType, List<MediaType> consumeTypes, Message m) throws IOException, WebApplicationException { //根据请求的contentType 如application/json,application/xml List<MediaType> types = JAXRSUtils.intersectMimeTypes(consumeTypes, contentType); MessageBodyReader<T> provider = null; for (MediaType type : types) { //选择相应的内容解释器, //CXF通过JSonProvider对JSon提供支持,默认的Provider采用jettsion进行编码或解码。 //可以配置在xml文件里 <jaxrs:providers><ref bean="jsonProvider" /></jaxrs:providers> provider = ProviderFactory.getInstance(m) .createMessageBodyReader(targetTypeClass, parameterType, parameterAnnotations, type, m); if (provider != null) { try { HttpHeaders headers = new HttpHeadersImpl(m); return provider.readFrom( targetTypeClass, parameterType, parameterAnnotations, contentType, headers.getRequestHeaders(), is); } catch (Exception e) { throw e; } } else { ............. throw new WebApplicationException(Response.Status.UNSUPPORTED_MEDIA_TYPE); } } return null; } //以下是请求的contentType =application/json,我们选择JSONProvider对JSon提供支持的解析方法readFrom package org.apache.cxf.jaxrs.provider.json.JSONProvider public T readFrom(Class<T> type, Type genericType, Annotation[] anns, MediaType mt, MultivaluedMap<String, String> headers, InputStream is) throws IOException { //type是用户要解析成的类型,如type=class com.ym.box.data.LogBoxRequest //genericType是用户要解析成的类型的泛型,没有则为本身。如 class com.ym.box.data.LogBoxRequest //mt为contentType =application/json的封装 //header 为请求头 如{Accept=[application/json], accept-encoding=[UTF-8], cache-control=[no-cache], //connection=[keep-alive], content-encoding=[utf-8], Content-Length=[655], content-type=[application/json], //host=[localhost:8080], pragma=[no-cache], user-agent=[Apache CXF 2.6.1]} /**is为输入流,当使用POST请求时,is封装的是请求数据部分,如{"boxId":1000,"boxMobileLogs":[{"appId":111,"createTime":"2014-01-15 15:22:20","installTime":"2014-01-15 15:22:20","packageName":"com.snda.youni"},{"appId":112,"createTime":"2014-01-15 17:22:20","installTime":"2014-01-15 16:22:20","packageName":"com.snda.youni"},{"appId":113,"createTime":"2014-01-15 18:22:20","installTime":"2014-01-15 16:22:20","packageName":"com.snda.youni"}],"ccId":22222,"channelId":10000,"city":"市","fatherChannelId":10000000,"imei":"imei","imsi":"imsi地址","mac":"mac地址","phoneModel":"model","phoneNum":"13760730495","phoneVendor":"MOTO","productCode":"BK","province":"省","statType":4,"totalCnt":3,"versionName":"v12123"}**/ try { InputStream realStream = getInputStream(type, genericType, is); if (Document.class.isAssignableFrom(type)) { W3CDOMStreamWriter writer = new W3CDOMStreamWriter(); copyReaderToWriter(createReader(type, realStream, false), writer); return type.cast(writer.getDocument()); } boolean isCollection = InjectionUtils.isSupportedCollectionOrArray(type); Class<?> theGenericType = isCollection ? InjectionUtils.getActualType(genericType) : type; Class<?> theType = getActualType(theGenericType, genericType, anns); ////原来通过使用JSONProvider提供json支持的话,它走的流程是json-->xml-->object,如果你使用过的JSONProvider的话, //也许你会对type=class com.ym.box.data.LogBoxRequest有过为了在XML和对象间进行映射的配置,如使用@XmlRootElement, //网上有讨论如果使用JacksonJaxbJsonProvider对json的支持的话,效率会比JSONProvider高,后期会分析他们的原因。 Unmarshaller unmarshaller = createUnmarshaller(theType, genericType, isCollection); XMLStreamReader xsr = createReader(type, realStream, isCollection); Object response = null; if (JAXBElement.class.isAssignableFrom(type) || unmarshalAsJaxbElement || jaxbElementClassMap != null && jaxbElementClassMap.containsKey(theType.getName())) { response = unmarshaller.unmarshal(xsr, theType); } else { //这个时候,对象com.ym.box.data.LogBoxRequest@bf470d已经解析,装配完成。 response = unmarshaller.unmarshal(xsr); } if (response instanceof JAXBElement && !JAXBElement.class.isAssignableFrom(type)) { response = ((JAXBElement<?>)response).getValue(); } if (isCollection) { response = ((CollectionWrapper)response).getCollectionOrArray(theType, type, org.apache.cxf.jaxrs.utils.JAXBUtils.getAdapter(theGenericType, anns)); } else { response = checkAdapter(response, type, anns, false); } //进行类型转换object->T,然后返回 return type.cast(response); } catch (Exception e) { .... } // unreachable return null; } //======================================================================================== //如果使用com.fasterxml.jackson.jaxrs.json.JacksonJaxbJsonProvider对json的支持的话,对json的解析交给了JacksonJsonProvider /** * Method that JAX-RS container calls to deserialize given value. */ public Object readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream) throws IOException { AnnotationBundleKey key = new AnnotationBundleKey(annotations); EndpointConfig endpoint; synchronized (_readers) { endpoint = _readers.get(key); } // not yet resolved (or not cached any more)? Resolve! if (endpoint == null) { ObjectMapper mapper = locateMapper(type, mediaType); endpoint = EndpointConfig.forReading(mapper, annotations); // and cache for future reuse synchronized (_readers) { _readers.put(key.immutableKey(), endpoint); } } ObjectReader reader = endpoint.getReader(); JsonParser jp = reader.getJsonFactory().createJsonParser(entityStream); if (jp.nextToken() == null) { return null; } //解析json,转换形式为json->object return reader.withType(genericType).readValue(jp); }
相关推荐
1300张图片训练效果
教学辅助平台的出现,是为了更好地服务于教育工作者和学生,提高教学效果和学习效率。该平台集成了多个功能模块,旨在为用户提供全面、便捷的教学辅助服务。 平台首页作为导航入口,提供了清晰的界面布局和便捷的导航功能,方便用户快速找到所需功能。需要注意的是,“首页”这一选项在导航菜单中出现了多次,可能是设计上的冗余,需要进一步优化。 “个人中心”模块允许用户查看和管理自己的个人信息,包括修改密码等账户安全设置,确保用户信息的准确性和安全性。 在教育教学方面,“学生管理”和“教师管理”模块分别用于管理学生和教师的信息,包括学生档案、教师资料等,方便教育工作者进行学生管理和教学安排。同时,“课程信息管理”、“科目分类管理”和“班级分类管理”模块提供了课程信息的发布、科目和班级的分类管理等功能,有助于教育工作者更好地组织和管理教学内容。 此外,“课程作业管理”模块支持教师布置和批改作业,学生可以查看和提交作业,实现了作业管理的线上化,提高了教学效率。而“交流论坛”模块则为学生和教师提供了一个交流和讨论的平台,有助于促进师生互动和学术交流。 最后,“系统管理”模块为平台管理员提供了系统配置.
yolo系列算法目标检测数据集,包含标签,可以直接训练模型和验证测试,数据集已经划分好,适用yolov5,yolov8,yolov9,yolov7,yolov10,yolo11算法; 包含两种标签格:yolo格式(txt文件)和voc格式(xml文件),分别保存在两个文件夹中; yolo格式:<class> <x_center> <y_center> <width> <height>, 其中: <class> 是目标的类别索引(从0开始)。 <x_center> 和 <y_center> 是目标框中心点的x和y坐标,这些坐标是相对于图像宽度和高度的比例值,范围在0到1之间。 <width> 和 <height> 是目标框的宽度和高度,也是相对于图像宽度和高度的比例值
基于go语言的参数解析校验器项目资源
matlab主成分分析代码
那些年,与你同分同位次的同学都去了哪里?全国各大学在四川2020-2024年各专业最低录取分数及录取位次数据,高考志愿必备参考数据
Spire.XLS是一个基于.NET的组件,使用它我们可以创建Excel文件,编辑已有的Excel并且可以转换Excel文件.dll
现如今,随着互联网的发展,人们获取信息的方式也各有不同。以前的传统方式的信息流与电视,报纸,书籍,信件,等等,因为互联网的使用,现在的互联网媒体已经成为人们获取信息的最重要来源。更新互联网,让人们得到最新、最完整的信息变得越来越容易。 现在企业已经越来越重视互联网所能带来的利益,借助互联网来对自己的企业进行营销推广已经获得绝大部分企业的认可。本文我们主要进行的是股票分析系统网站的设计。何为股票分析,就是指股票投资人之间的根据市场价格对已发行上市的股票进行的买卖。而国内股票市场的迅速发展让这次开发设计显得十分必要。通过该股票分析系统网站,我们可以随时随地通过该股票分析网站,了解股票行业最新信息;根据股票行业分析来进行相关交易。本网站采用的是Springboot技术和mongodb数据库,运用 stock、 vue2、echarts、bootstrap等技术,使用eclipse开发工具完成股票数据的爬取分析。
文件太大放服务器了,请先到资源详情查看然后下载 样本图参考:blog.csdn.net/2403_88102872/article/details/143395913 数据集格式:Pascal VOC格式+YOLO格式(不包含分割路径的txt文件,仅仅包含jpg图片以及对应的VOC格式xml文件和yolo格式txt文件) 图片数量(jpg文件个数):602 标注数量(xml文件个数):602 标注数量(txt文件个数):602 标注类别数:18 标注类别名称:["apple","chocolate","cloth","cononut_water","detergent","fanta","gelatin","kuat","mustard","nescau","peanut","pear","sauce","shoyo","sponge","tangerine","tea","treloso"] 18种常见的厨房食品和佐料,包括苹果、巧克力、椰子水、洗涤剂、饮料、明胶、芥末、花生、酱油等
基于卷积神经网络参数优化的情感分析论文code_cnn-text-classification
那些年,与你同分同位次的同学都去了哪里?全国各大学在四川2020-2024年各专业最低录取分数及录取位次数据,高考志愿必备参考数据
内容概要:本文档详细描述了一个基于 Python 的人脸识别系统的构建过程,涵盖了从系统设计理念到具体功能实现的各个方面。首先介绍了系统总体设计流程,包括摄像头图像捕获、人脸检测、特征值计算、特征均值处理以及分类识别。接着深入探讨了 Dlib、NumPy、OpenCV 等关键技术库的应用,特别是 Dlib 人脸检测器接口、人脸预测器接口和人脸识别模型的具体使用方法。最后,本文档介绍了如何通过 Euclidean 距离进行人脸特征比对,实现人脸的成功识别与身份确认。此外,还讨论了人脸识别在实际生活中的多种应用场景和重要意义。 适用人群:具有一定编程基础的软件开发者和技术爱好者,尤其是从事机器学习、图像处理和计算机视觉领域的专业技术人员。 使用场景及目标:①开发人脸识别系统,实现实时图像处理和人脸特征提取;②掌握 Dlib、NumPy、OpenCV 等技术库的实际应用技巧;③深入了解人脸识别技术在安全监控、身份认证、智慧社区等领域的应用。 其他说明:本文档提供了丰富的理论背景和技术实现细节,帮助读者更好地理解和应用人脸识别技术。此外,还包括了一些实用的编码技巧和最佳实践,有助于提高开发效率和代码质量。
轻量级高性能GO语言开发框架。支持MVC、依赖注入、动态返回
stm32的串口hex文件发送与文本文件发送
那些年,与你同分同位次的同学都去了哪里?全国各大学在四川2020-2024年各专业最低录取分数及录取位次数据,高考志愿必备参考数据
macOS_Sonoma_14.1.1.rdr.split.003
那些年,与你同分同位次的同学都去了哪里?全国各大学在四川2020-2024年各专业最低录取分数及录取位次数据,高考志愿必备参考数据
400699526844862小爱同学.apk
内容概要:本文介绍了基于微信小程序的校园一体化服务平台的设计与开发。该平台利用微信小程序的便捷性和广泛的用户基础,结合JSP技术和MySQL数据库,实现了个人中心、用户管理、寻物启事管理、物品分类管理、失物招领管理、表白广场管理、吐槽大会管理、二手交易管理、交易类型管理、拼车出行管理和系统管理等多项功能。整个系统具有操作简单、易维护、灵活实用等特点。 适合人群:具有一定编程基础的学生和教师,以及希望深入了解微信小程序开发的技术人员。 使用场景及目标:主要用于高校内的信息管理,如失物招领、物品分类、二手交易等,提升校园生活的便捷性和效率,改善用户体验。 其他说明:系统开发过程中,重点考虑了技术可行性、经济可行性和操作可行性,并进行了详细的系统测试,确保系统的稳定性和可靠性。
(1)课程设计项目简单描述 鉴于当今超市产品种类繁多,光靠人手动的登记已经不能满足一般商家的需求。我们编辑该程序帮助商家完成产品、商家信息的管理,包括产品、客户、供应商等相关信息的添加、修改、删除等功能。 (2)需求分析(或是任务分析) 1)产品类别信息管理:对客户的基本信息进行添加、修改和删除。 2)产品信息管理:对产品的基本信息进行添加、修改和删除。 3)供应商信息管理: 对供应商的基本信息进行添加、修改和删除。 4)订单信息管理:对订单的基本信 息进行添加、修改和删除。 5)统计报表:按选择日期期间,并按产品类别分组统 计订单金额,使用表格显示统计结果