在 Eclipse 中传递 javac 参数
Passing javac arguments in eclipse
在我的 Maven 编译器插件中,我有以下设置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
有没有办法将 -parameters
部分传递给 eclipse 使用的编译器?
在项目>属性:Java编译器你必须检查存储有关方法参数的信息(可通过反射使用) 复选框。
应自动选中该复选框(参见已修复的 Eclipse bug 518218). If you are using an outdated version of Eclipse, please upgrade。
在我的 Maven 编译器插件中,我有以下设置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
有没有办法将 -parameters
部分传递给 eclipse 使用的编译器?
在项目>属性:Java编译器你必须检查存储有关方法参数的信息(可通过反射使用) 复选框。
应自动选中该复选框(参见已修复的 Eclipse bug 518218). If you are using an outdated version of Eclipse, please upgrade。