gpt4 book ai didi

java - 让 maven 启动 jetty (Tapestry 教程)

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:20:20 24 4
gpt4 key购买 nike

我正在努力完成 Tapestry 教程。

我想我已经把一切都设置好了,到目前为止一切都很好,但我到了 part tut 相当流畅地指出:

Change into the newly created directory, and execute the command:

mvn jetty:run

Again, the first time, there's a dizzying number of downloads, but before you know it, the Jetty servlet container is up and running.

我愿意!这只会导致以下错误。

The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does not exist or no valid version could be found

我有 maven-2.2.0, Jetty-5.1.9

我所做的与教程所述唯一不同的是我使用 archetype:generate 而不是 archetype:create 因为 create 失败并且注意到它已被弃用,并建议改为生成

最佳答案

这是由于您的 pom.xml 文件中缺少 maven-jetty-plugin 造成的:

在pom中添加如下依赖:

<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.0.1</version>
</plugin>

现在 mvn clean install 然后 jetty run 就可以了

关于java - 让 maven 启动 jetty (Tapestry 教程),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1127704/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com