解决IDEA启动时Command line is too long

解决Command line is too long

启动的时候,有时候会提示Command line is too long无法启动,解决办法如下
方式一
1 进入到启动参数设置项

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

方式二
在项目/.idea/workspace.xml文件中添加一行代码如下

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

猜你喜欢

转载自blog.csdn.net/weixin_42541360/article/details/88972371