1

我正在尝试在 Eclipse 中调试代码,当我将鼠标悬停在变量上时,我看不到 joda Interval.class 中的变量值。

我确实看到了其他 .class 文件(不是 joda 类)中定义的其他变量的值。

它仅适用于 joda 课程。我确实重置了调试透视图并删除了目标文件夹并重新创建了它,但问题仍然存在。请检查附件。

任何帮助,将不胜感激。


variabled_values_not_showing_up

4

1 回答 1

1
My problem are solved changing maven pom.xml file...
<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <debug>true</debug>
                    <debuglevel>lines,vars,source</debuglevel>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
于 2015-12-03T13:57:30.277 回答