我的应用程序使用反射来提取特定方法的参数名称。
我需要这些名字,就像它们写在我的代码中一样(而不是arg0,arg1 ......)。
为了达到这个目的,我去: Windows - >偏好 - > Java - >编译器 - 并标记:“存储方法参数名称”。
(我在Eclipse Kepler中使用JDK1.8)
现在,当我做类似的事情时:
method.getParameters()[0].getName()
如果我使用Debug Configuration = Java application - >运行我的应用程序它工作正常!
BUT ,如果我使用Debug Configuration = M2 Maven Build - >运行它它不起作用!它显示了合成名称(arg0,arg1 ...)
我需要它通过Maven Build工作,任何想法?
答案 0 :(得分:5)
尝试明确告诉编译器您希望保留方法参数名称:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-g:vars</compilerArgument>
<testCompilerArgument>-g:vars</testCompilerArgument>
</configuration>
</plugin>