gpt4 book ai didi

jsp - Jetty 中缺少 JSP 支持,或者日志消息令人困惑?

转载 作者:行者123 更新时间:2023-12-03 21:14:19 26 4
gpt4 key购买 nike

通过调用 6.1.24 中的 API 启动 jetty。

JSP 2.1 组件位于类路径中。

org.mortbay.jetty:jsp-2.1-jetty:jar:6.1.24:compile

但是日志说:
2010-08-19 08:16:19.443:INFO::NO JSP Support for /basis_ws, did not find org.apache.jasper.servlet.JspServlet

使用相应的 maven-jetty-plugin 时没有看到此消息。

我错过了什么?

最佳答案

当我第一次开始使用 jetty 时,我遇到了这个问题。问题是仅仅包含 jsp jars 似乎还不够。这是我用来解决它的 maven 依赖项列表。

    <dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>7.2.2.v20101205</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>7.2.2.v20101205</version>
</dependency>

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jsp-2.1</artifactId>
<version>7.2.2.v20101205</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jsp-2.1-glassfish</artifactId>
<version>2.1.v20100127</version>
</dependency>

关于jsp - Jetty 中缺少 JSP 支持,或者日志消息令人困惑?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3521654/

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