PHPz2017-04-18 10:39:45
You still have to document at the critical moment. . .
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<forkCount>1</forkCount> //虚拟机的最大线程数
<reuseForks>false</reuseForks> //虚拟机是否可以重用
</configuration>
</plugin>