在eclipse调试模式下不显示变量值

时间:2013-11-14 21:49:12

标签: eclipse debugging

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

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

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

任何帮助都将不胜感激。


variabled_values_not_showing_up

1 个答案:

答案 0 :(得分: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>