2

我有一个 .java 文件,我将其部署到服务器并通过本地 eclipse 对其进行调试。我已经通过命令启动了应用程序

java -Xdebug -Xrunjdwp:transport=dt_socket,address=8998,server=y TestRemoteDebug

我也在 eclipse 中创建了正确的调试配置。

现在,当我启动应用程序时,我可以看到它遇到断点,但我无法在“变量”窗格中看到任何变量值,或者将鼠标悬停在变量上,因为它在本地机器中工作。

任何帮助表示赞赏。

4

2 回答 2

2

javac -g 使用修复的 this 编译 java 文件。

于 2012-09-17T17:29:30.853 回答
0

如果你使用 maven,你必须设置 maven-compile-plugin

        <!-- Compilation management -->
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.5.1</version>
            <configuration>
                <encoding>${project.build.sourceEncoding}</encoding>
                <source>${jdk.version}</source>
                <target>${jdk.version}</target>
                <debug>true</debug>
                <verbose>true</verbose>
                <optimize>true</optimize>
                <showDeprecation>true</showDeprecation>
                <showWarnings>true</showWarnings>               
            </configuration>            
        </plugin>
于 2012-09-17T21:16:37.063 回答