Project maven console output garbled solution

Print out the console when running a maven of springboot project Chinese news has been garbled, and later been to look to find a solution. Add node follows the maven pom file on it.

 

 

<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<fork>true</fork>
					<!--增加jvm参数-->
					<jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
				</configuration>

			</plugin>

  

 

Guess you like

Origin www.cnblogs.com/wolf-zt/p/11120251.html