在Spring Boot中,可以通过配置字符编码来解决接收中文乱码的问题。
首先,在application.properties文件中添加以下配置:
spring.http.encoding.enabled=true
spring.http.encoding.force=true
spring.http.encoding.charset=UTF-8
这将启用字符编码,并将字符集设置为UTF-8。
然后,在Controller中,可以使用@RequestParam注解来接收中文参数:
@GetMapping("/example")
public String example(@RequestParam("name") String name) {
// 处理中文参数
return "Hello " + name;
}
在前端发送请求时,确保请求的Content-Type设置为application/x-www-form-urlencoded;charset=UTF-8。
这样配置后,Spring Boot将能够正确处理中文参数并避免乱码问题。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: springboot的核心注解有哪些