我在尝试使用rapidoid-rest作为依赖项创建一个简单的基于maven的项目时遇到了麻烦。
我的pom.xml只有一个依赖
<dependencies>
<dependency>
<groupId>org.rapidoid</groupId>
<artifactId>rapidoid-rest</artifactId>
<version>5.0.12</version>
</dependency>
</dependencies>
主应用程序代码就像这样
On.get("/example").json("example")
On
是一个来自rapidoid-http-server依赖的类,应该包含在rapidoid-rest中。它似乎只包含在&#34; test&#34;作为范围。如果我将其添加为新的依赖项,我的版本不匹配,因为一个是5.0.12,而另一个是5.5.4。我甚至无法从github运行示例。
答案 0 :(得分:1)
请使用rapidoid-http-server模块。最近它在即将发布的v6版本中更名为rapidoid-rest。