我将 dmn-quarkus-example 项目导入 Eclipse。该项目编译并显示没有错误。当我运行 mvn clean quarkus:dev 时,我能够通过邮递员测试其余端点并且它可以工作。
但是我的 Eclipse 中的 junit 以 404 失败。
我阅读了一些博客并使用以下内容更新了我的 application.properties 文件,但仍然没有运气
quarkus.http.port=9090
%dev.quarkus.http.port=9191
quarkus.http.test-port=8181
为了让 junit 正常工作,我必须做的另一件事是在 pom.xml 中添加以下依赖项
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>