Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the garbled code of Json data in SpringBoot response

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the relevant knowledge of "how to solve the garbled code of SpringBoot response Json data". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Catalogue

Scene

Realize

Set the response encoding of SpringBoot to utf-8

Locate the application.properties configuration file

Add as follows:

# set the response to utf-8spring.http.encoding.force-response=true

Refresh the browser again

SpringBoot returned json data garbled

The first solution

When the request RequestMapping is set directly, it is only for the request. It may be garbled when the interceptor returns json data.

@ RequestMapping (value = "/ user", produces= "application/json;charset=UTF-8") the second way

It may not be effective.

# solve @ ResponseBody Chinese garbled problem spring: http: encoding: force: true the third perfect solution scenario

Realize

Set the response encoding of SpringBoot to utf-8

Locate the application.properties configuration file

Add as follows:

# set the response to utf-8spring.http.encoding.force-response=true

Refresh the browser again

The first solution to garbled json data returned by SpringBoot

When the request RequestMapping is set directly, it is only for the request. It may be garbled when the interceptor returns json data.

@ RequestMapping (value = "/ user", produces= "application/json;charset=UTF-8") the second way

It may not be effective.

# solve @ ResponseBody Chinese garbled problem spring: http: encoding: force: true the third perfect solution

Implement the WebMvcConfigurer interface

@ Configurationpublic class WebAppConfigurer implements WebMvcConfigurer {@ Bean public HttpMessageConverter responseBodyConverter () {/ / resolve the garbled code in the returned value StringHttpMessageConverter converter = new StringHttpMessageConverter (Charset.forName ("UTF-8")); return converter;} @ Override public void configureMessageConverters (List

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report