Solve the command line is too long when IDEA starts

解决Command line is too long

When starting, sometimes it will prompt Command line is too long unable to start, the solution is as follows:
Method
1: Enter the startup parameter setting item

2 选中要设置的微服务,在短命令行中选择如下
JAR manifest - ...

Method 2
: Add a line of code to the project/.idea/workspace.xml file as follows

	<component name="PropertiesComponent">
	 		<property name="dynamic.classpath" value="true" />
	</component>

Guess you like

Origin blog.csdn.net/weixin_42541360/article/details/88972371