1. 程式人生 > >spring-boot:run 控制檯中文亂碼處理

spring-boot:run 控制檯中文亂碼處理

基於Maven處理

 <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <fork>true</fork
>
<!-- spring-boot:run 中文亂碼解決 --> <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments> </configuration> <dependencies> <dependency> <groupId>org.springframework</groupId
>
<artifactId>springloaded</artifactId> <version>1.2.8.RELEASE</version> </dependency> </dependencies> </plugin> </plugins> </build>