Intellij - 调试器在maven项目中不工作

Intellij - 调试器在maven项目中不工作

问题描述:

我遇到了一个问题,我无法在IntelliJ中调试Maven Sprint启动REST API应用程序。应用程序启动但不会停在任何断点处。Intellij - 调试器在maven项目中不工作

此外,当我停止调试器时,我在日志中看到下面的行,但是我可以看到java进程永不终止,并且当我第二次启动应用程序时失败,因为服务器端口8080仍在使用中。

Disconnected from the target VM, address: '127.0.0.1:53020', transport: 'socket' 
Process finished with exit code -1 

在C:\ Users \ Bernhard.IdeaIC2017.3 \ system \ log的IntelliJ日志中,我看到以下错误。

2017-12-15 07:22:30,761 [ 11899] INFO - .server.BuildMessageDispatcher - An existing connection was forcibly closed by the remote host 
java.io.IOException: An existing connection was forcibly closed by the remote host 
    at sun.nio.ch.SocketDispatcher.read0(Native Method) 
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43) 
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223) 
    at sun.nio.ch.IOUtil.read(IOUtil.java:192) 
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380) 
    at io.netty.buffer.PooledUnsafeDirectByteBuf.setBytes(PooledUnsafeDirectByteBuf.java:288) 
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1100) 
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:372) 
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:123) 
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:644) 
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:579) 
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:496) 
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:458) 
    at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) 
    at java.lang.Thread.run(Thread.java:745) 

经过一番搜索之后,我发现问题出在IntelliJ中我的Maven Run/Debug配置。我用它来启动春季启动REST API的命令行是

clean package -Drun.profiles=dev-us-east-1 -Drun.jvmArguments=-Denvironment=dev -DskipTests spring-boot:run 

看来,-Drun.jvmArguments=-Denvironment=dev java命令行属性是罪魁祸首。当我删除它时,断点再次工作。

您可能可以用引号括住该参数的值。读取整个命令行字符串的解析器可能因为-D arg中的-D arg而窒息。

清洁套装-Drun.profiles = DEV-美国东1 -Drun.jvmArguments = “-Denvironment =开发” -DskipTests春天启动:运行

+0

嗨Jaraon,好oberservation。我确实有双引号中的“-Denvironment = dev”。我相信*似乎在我的复制粘贴中删除了它们... –