1新增maven依赖
<io.protostuff.version>1.3.8</io.protostuff.version> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-collectionschema</artifactId> <version>${io.protostuff.version}</version> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-runtime</artifactId> <version>${io.protostuff.version}</version> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-api</artifactId> <version>${io.protostuff.version}</version> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-core</artifactId> <version>${io.protostuff.version}</version> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-json</artifactId> <version>${io.protostuff.version}</version> </dependency> <dependency> <groupId>net.jpountz.lz4</groupId> <artifactId>lz4</artifactId> <version>1.3.0</version> </dependency> <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> <version>1.1.2.1</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>com.dyuproject.protostuff</groupId> <artifactId>protostuff-api</artifactId> <version>${dyuproject.protostuff.version}</version> </dependency> <dependency> <groupId>com.dyuproject.protostuff</groupId> <artifactId>protostuff-core</artifactId> <version>${dyuproject.protostuff.version}</version> </dependency> <dependency> <groupId>com.dyuproject.protostuff</groupId> <artifactId>protostuff-runtime</artifactId> <version>${dyuproject.protostuff.version}</version> </dependency>
2.新增类:ProtostuffHttpMessageConverter,网上已有实现
package com.*.*.*.mvc.converter; import com.google.common.base.Stopwatch; import io.protostuff.LinkedBuffer; import io.protostuff.ProtobufIOUtil; import io.protostuff.Schema; import io.protostuff.runtime.RuntimeSchema; import net.jpountz.lz4.LZ4BlockOutputStream; import org.apache.commons.io.IOUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.HttpInputMessage; import org.springframework.http.HttpOutputMessage; import org.springframework.http.MediaType; import org.springframework.http.converter.AbstractHttpMessageConverter; import org.springframework.http.converter.HttpMessageNotReadableException; import org.springframework.http.converter.HttpMessageNotWritableException; import org.xerial.snappy.SnappyOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.nio.charset.Charset; import java.util.zip.GZIPOutputStream; /** * <p> * An {@code HttpMessageConverter} that can read and write * <a href="https://developers.google.com/protocol-buffers/">Google Protocol Buffer (Protobuf)</a> messages using the * open-source <a href="http://http://www.protostuff.io">Protostuff library</a>. Its advantage over native Protobuf * serialization and deserialization is that it can work with normal {@code POJO}s, as compared to the native * implementation that requires the objects to implement the {@code Message} interface from the Protobuf Java library. * This allows applications to use Protobuf with existing classes instead of having to re-generate them using the * Protobuf compiler. * </p> * <p> * Supports the {@code application/x-protobuf} media type. Regular Spring MVC application clients can use this as the * media type for the {@code Accept} and {@code Content-Type} HTTP headers for exchanging information as Protobuf * messages. * </p> */ public class ProtostuffHttpMessageConverter extends AbstractHttpMessageConverter<Object> { private Logger logger = LoggerFactory.getLogger(getClass()); public static final Charset DEFAULT_CHARSET = Charset.forName("UTF-8"); public static final MediaType MEDIA_TYPE = new MediaType("application", "x-protobuf", DEFAULT_CHARSET); public static final MediaType MEDIA_TYPE_LZ4 = new MediaType("application", "x-protobuf-lz4", DEFAULT_CHARSET); public static final MediaType MEDIA_TYPE_GZIP = new MediaType("application", "x-protobuf-gzip", DEFAULT_CHARSET); public static final MediaType MEDIA_TYPE_SNAPPY = new MediaType("application", "x-protobuf-snappy", DEFAULT_CHARSET); /** * Construct a new instance. */ public ProtostuffHttpMessageConverter() { super(MEDIA_TYPE, MEDIA_TYPE_LZ4, MEDIA_TYPE_GZIP, MEDIA_TYPE_SNAPPY); } /** * {@inheritDoc} */ @Override public boolean canRead(final Class<?> clazz, final MediaType mediaType) { return canRead(mediaType); } /** * {@inheritDoc} */ @Override public boolean canWrite(final Class<?> clazz, final MediaType mediaType) { return canWrite(mediaType); } /** * {@inheritDoc} */ @Override protected Object readInternal(final Class<?> clazz, final HttpInputMessage inputMessage) throws IOException, HttpMessageNotReadableException { if (MEDIA_TYPE.isCompatibleWith(inputMessage.getHeaders().getContentType())) { final Schema<?> schema = RuntimeSchema.getSchema(clazz); final Object value = schema.newMessage(); try (final InputStream stream = inputMessage.getBody()) { ProtobufIOUtil.mergeFrom(stream, value, (Schema<Object>) schema); return value; } } throw new HttpMessageNotReadableException( "Unrecognized HTTP media type " + inputMessage.getHeaders().getContentType().getType() + "."); } /** * {@inheritDoc} */ @Override protected boolean supports(final Class<?> clazz) { // Should not be called, since we override canRead/canWrite. throw new UnsupportedOperationException(); } /** * {@inheritDoc} */ @Override protected void writeInternal(final Object o, final HttpOutputMessage outputMessage) throws IOException, HttpMessageNotWritableException { if(logger.isDebugEnabled()){ logger.info("Current type: {}", outputMessage.getHeaders().getContentType()); } Stopwatch stopwatch = Stopwatch.createStarted(); OutputStream stream = null; try { stream = outputMessage.getBody(); if (MEDIA_TYPE.isCompatibleWith(outputMessage.getHeaders().getContentType())) { } else if (MEDIA_TYPE_GZIP.isCompatibleWith(outputMessage.getHeaders().getContentType())) { stream = new GZIPOutputStream(stream); } else if (MEDIA_TYPE_LZ4.isCompatibleWith(outputMessage.getHeaders().getContentType())) { stream = new LZ4BlockOutputStream(stream); } else if (MEDIA_TYPE_SNAPPY.isCompatibleWith(outputMessage.getHeaders().getContentType())) { stream = new SnappyOutputStream(stream); } else { throw new HttpMessageNotWritableException( "Unrecognized HTTP media type " + outputMessage.getHeaders().getContentType().getType() + "."); } ProtobufIOUtil.writeTo(stream, o, RuntimeSchema.getSchema((Class<Object>) o.getClass()), LinkedBuffer.allocate()); stream.flush(); } finally { IOUtils.closeQuietly(stream); } if (logger.isDebugEnabled()){ logger.info("Output spend {}", stopwatch.toString()); } } }
3.修改spring配置添加protosufHttpMessageConverter
<mvc:annotation-driven> <mvc:message-converters register-defaults="true"> <ref bean="stringHttpMessageConverter"/> <ref bean="fastJsonHttpMessageConverter"/> <!-- <ref bean="protobufHttpMessageConverter"/>--> <ref bean="protosufHttpMessageConverter"/> <!-- <ref bean="marshallingHttpMessageConverter"/>--> </mvc:message-converters> </mvc:annotation-driven> <bean id="protosufHttpMessageConverter" class="com.*.*.*.mvc.converter.ProtostuffHttpMessageConverter"> <property name="supportedMediaTypes"> <list> <value>application/x-protobuf;charset=UTF-8</value> <value>application/x-protobuf-lz4;charset=UTF-8</value> <value>application/x-protobuf-gzip;charset=UTF-8</value> <value>application/x-protobuf-snappy;charset=UTF-8</value> </list> </property> </bean>
相关推荐
对于JSON格式的数据,可以使用Jackson库自动序列化和反序列化。 5. **错误处理**:通过自定义异常处理器或使用全局异常处理注解`@ExceptionHandler`来处理可能出现的错误情况。 在"restful webservice in ...
但在RESTful场景下,我们通常返回JSON或XML格式的数据,此时可以使用`@ResponseBody`注解将方法的返回值直接序列化成HTTP响应体。 4. ** AJAX与异步处理**:在描述中提到使用AJAX发送REST请求处理数据,这通常涉及...
对于RESTful API,通常返回JSON格式的数据,因此你可能还会用到Jackson库进行JSON序列化和反序列化。 总之,这个"springmvc 之 RestfulCRUD实例练习工程"为你提供了一个学习和实践Spring MVC RESTful API开发的良好...
为了使Spring MVC应用程序支持RESTful服务,还需要配置Spring MVC的DispatcherServlet,并启用Jackson库进行JSON序列化和反序列化。在`web.xml`或Spring Boot的配置中,我们需要配置`<mvc:annotation-driven>`元素,...
在SpringMVC中,我们可以使用Jackson库或者Gson库来处理JSON序列化和反序列化。 三、创建SpringMVC项目 1. 设置环境:首先,确保你已经安装了Java、Maven以及IDE(如IntelliJ IDEA或Eclipse)。 2. 创建Maven项目:...
- 使用`@RequestBody`和`@ResponseBody`注解来序列化和反序列化请求和响应数据。 - 为每个资源定义清晰的URI结构,遵循CRUD原则(Create、Read、Update、Delete)。 在实际开发中,理解并熟练运用这些知识点能...
FastJson是阿里巴巴开源的一个高性能的JSON库,它可以用于序列化和反序列化Java对象,非常适合于处理API的输入输出数据。本文将详细介绍如何在Spring MVC项目中整合FastJson,实现RESTful风格的API。 首先,我们...
- **错误处理**:在处理JSON序列化和反序列化异常时,应捕获`JSONException`并给出适当的错误响应。 - **安全性考虑**:FastJson存在一些安全问题,如不合理的配置可能导致DoS攻击。因此,在生产环境中务必关注...
2. **模型和视图**:`@RequestBody`和`@ResponseBody`注解分别用于接收HTTP请求体和返回响应体,实现数据的序列化和反序列化。 3. **路径变量和查询参数**:通过`@PathVariable`处理URL路径中的动态部分,`@...
- **JSON数据交互**:SpringMVC支持JSON数据的序列化和反序列化,便于与Ajax等前端技术结合。 - **RESTful支持**:遵循RESTful风格的URL设计,提高API的易用性和一致性。 - **拦截器**:类似于过滤器,但更灵活,...
Redis缓存(ProtoStuff序列化) Redis Sentinel主从高可用方案 Redis Cluster集群高可用方案 Druid(数据源配置 sql防注入 sql性能监控) 前后端分离(Html替代Jsp) Nginx静态加载、负载均衡 基于keepalived的nginx...
`jackson-core`提供了基本的JSON流处理API,`jackson-databind`负责映射JSON到Java对象和反之,`jackson-annotations`包含了一些注解,这些注解用于定制序列化和反序列化过程。 2. **Spring MVC配置**:在Spring ...
处理 JSON 数据通常需要 Jackson 或 Gson 这样的库来序列化和反序列化。在 Controller 方法中,可以使用 @RequestBody 将 JSON 请求体映射到一个对象,而使用 @ResponseBody 将结果对象转换成 JSON 返回给客户端。 ...
5. **Jackson 序列化与反序列化**:Jackson 提供了 `ObjectMapper` 类来进行 JSON 的序列化和反序列化。例如,你可以使用 `objectMapper.writeValueAsString(object)` 将 Java 对象转换为 JSON 字符串,使用 `...
Json(JavaScript Object Notation)是一种轻量级的数据交换格式,易于人阅读和编写,同时也易于机器解析和生成,是RESTful服务中常用的表示数据的方式。 在SpringMVC中实现RESTful服务,通常会涉及到以下知识点: ...
一个RESTful接口通常由HTTP方法(GET、POST、PUT、DELETE等)、URI和可序列化的响应体组成。使用@RequestMapping及其子注解(如@GetMapping、@PostMapping等)可以定义这些接口。 Spring MVC与Spring的集成使得我们...
4. **JSON序列化和反序列化**:SpringMVC默认支持Jackson库进行JSON转换,通过`@ResponseBody`注解将方法返回值直接转换为JSON响应。对于请求参数,可以使用`@RequestBody`注解将JSON请求体解析为Java对象。 5. **...
`ObjectMapper`类是此模块的主要接口,它执行实际的序列化和反序列化操作。 2. `jackson-core-2.4.2.jar`: Jackson核心库提供了基本的JSON解析和生成功能。它是其他Jackson模块(如databind和annotations)的基础,...
- 使用Spring提供的`@ResponseBody`和`@JsonView`注解,以及Jackson库,实现JSON数据的序列化和反序列化。 10. **测试支持**: - SpringMVC Test模块提供对Controller的单元测试和集成测试支持,可以模拟HTTP请求...
Jackson库则扮演了核心角色,负责JSON序列化与反序列化的工作。 1. **Spring MVC 框架**: Spring MVC是Spring框架的一个模块,专门用于处理Web请求。它通过DispatcherServlet作为前端控制器,将请求分发到不同的...