We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当springboot集成pandoraboot做单元测试时,会出现报错,设置idea中的VM options参数-Dhsf.server.ip可以解决,但是单元测试不能每次执行都要设置该参数,请问是否有更好的解决方式。
The text was updated successfully, but these errors were encountered:
我也遇到了这个问题,用maven-sunfire-plugin解决的:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Dhsf.server.ip=127.0.0.1</argLine> </configuration> </plugin>
Sorry, something went wrong.
to #9 , 增加模拟慢调用
285ee48
No branches or pull requests
当springboot集成pandoraboot做单元测试时,会出现报错,设置idea中的VM options参数-Dhsf.server.ip可以解决,但是单元测试不能每次执行都要设置该参数,请问是否有更好的解决方式。
The text was updated successfully, but these errors were encountered: