无法运行程序 CreateProcess error=206,文件名或扩展名太长

在 pom 文件中使用 jvmarguments 时出现标题错误。我正在使用带有以下插件的 mvnw 命令来启用调试。如果我删除 jvm 参数,它就可以工作。但是我想使用 mvnw 命令启用远程调试


代码片段:


<plugin>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-maven-plugin</artifactId>

        <executions>

            <execution>

                <goals>

                    <goal>repackage</goal>

                </goals>

            </execution>

        </executions>

        <configuration>

            <mainClass>${start-class}</mainClass>

            <executable>true</executable>

            <fork>true</fork>

            <jvmArguments>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005</jvmArguments> 

        </configuration>

</plugin>

错误:


*[ERROR] 无法执行目标 org.springframework.boot:spring-boot-maven-plugin:2.0.7.RELEASE:run (default-cli) on project dxcgateway: Could not exec java: Cannot run program "C:\ Program Files\Java\jdk1.8.0_202\jre\bin\java.exe": CreateProcess error=206, The filename or extension is too long -> 【求助1】org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute目标org.springframework.boot:spring-boot-maven-plugin:2.0.7.RELEASE:在项目dxcg ateway上运行(默认cli):无法执行java


Caused by: java.io.IOException: Cannot run program "C:\Program Files\Java\jdk1.8.0_202\jre\bin\java.exe": CreateProcess error=206, 文件名或扩展名太长lang.ProcessBuilder.start (ProcessBuilder.java:1048) 在 org.springframework.boot.loader.tools.RunProcess.run (RunProcess.java:77)


Caused by: java.io.IOException: Cannot run program "C:\Program Files\Java\jdk1.8.0_202\jre\bin\java.exe": CreateProcess error=206, 文件名或扩展名太长lang.ProcessBuilder.start (ProcessBuilder.java:1048) 在 org.springframework.boot.loader.tools.RunProcess.run (RunProcess.java:77)*


小唯快跑啊
浏览 2727回答 4
4回答

阿波罗的战车

如果您使用的是 IntelliJ Idea 平台,只需更改启动配置即可避免使用默认的缩短行这对我有用。

LEATH

改变<fork>true</fork>到<fork>false</fork>

MMTTMM

这是由 Windows 操作系统限制引起的。解决它:将 .m2 存储库移动到 c:\从 %MAVEN_HOME%/conf 打开 settings.xml 并查找 <settings>.<localRepository>(如果已经注释掉则取消注释)并将其值更改为 c:/.m2/repository保存文件并再次运行构建

斯蒂芬大帝

对我来说我有类似的例外,下面的改变解决了这个问题&nbsp; &nbsp; &nbsp; &nbsp; <plugin>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <groupId>org.springframework.boot</groupId>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <artifactId>spring-boot-maven-plugin</artifactId>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <configuration>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <fork>false</fork>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </configuration>&nbsp; &nbsp; &nbsp; &nbsp; </plugin>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java