隐藏

SpringBoot在IDEA中控制台乱码问题

发布:2022/3/17 14:25:19作者:管理员 来源:本站 浏览次数:1510

乱码的情况有很多,我把我在网上所找到的和对我适用的都贴在下方

1、首先去设置里面设置

2、接着去maven里添加jvm参数


<build>

       <plugins>

           <plugin>

               <groupId>org.springframework.boot</groupId>

               <artifactId>spring-boot-maven-plugin</artifactId>


               <!-- spring-boot:run 中文乱码解决 -->

               <configuration>

                   <fork>true</fork>

                   <!--增加jvm参数-->

                   <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>

               </configuration>

           </plugin>

       </plugins>

   </build>


3、然而我千辛万苦的试了上面这两种方法之后,最终都是以失败而告终,然后找到了一个方法,在你的application.properties文件中添加


spring.http.encoding.force=true

spring.http.encoding.charset=UTF-8

spring.http.encoding.enabled=true

server.tomcat.uri-encoding=UTF-8


4、然而最终完美解决了我的问题,在这里我非常希望对各位会有帮助