Using idea development, Maven build error:
Error assembling WAR: Problem creating war: Execution exception (and the archive is probably corrupt but I could not delete it)
The cause of the error is that the memory of the JVM is not enough, so it’s better to configure it. The steps are as follows:
So we modify Maven’s JVM parameters directly in idea,
file-> setting-> Build,Execution,Deployment-> Maven-> Runner
Set the JVM parameter in VM option column, – xmx1g – XX: maxmetaspacesize = 128M
After setting, click Install on the right side to start the compilation, the parameter takes effect, and the maximum heap memory becomes 1g
0
div>