liubao68 commented on issue #2128: URL: https://github.com/apache/servicecomb-java-chassis/issues/2128#issuecomment-743738669
可以参考[这个pom](https://github.com/apache/servicecomb-samples/blob/master/porter_springboot/pom.xml), 配置 -paramters 记得重新import一下项目,或者rebuild一下项目,确保编译器,比如IDEA正常识别 ``` <build> <pluginManagement> <plugins> <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>-parameters</compilerArgument> </configuration> </plugin> </plugins> </pluginManagement> </build> ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
