第一次使用Tomcat和Stripes框架

发布于 2024-08-04 21:08:48 字数 560 浏览 4 评论 0原文

我最近决定尝试一些java web开发,所以我安装了xampp、tomcat插件和java。我查看了它附带的一些 JSP 页面示例,因此我知道 tomcat 至少可以工作。 但是,当我将 stripes 文件夹放入同一示例目录并尝试访问这些文件时,我收到了以下错误。

org.apache.jasper.JasperException: 绝对URI: http://stripes.sourceforge.net/stripes.tld 无法在 web.xml 中解析 或用此部署的 jar 文件 应用

现在,在使用 tomcat 或 jsp 页面时,我是一个完全的初学者。我可能错过了一些简单的步骤。我在网上搜索了几个小时,但没有找到关于如何设置和开始使用 stripes 框架的非常好的教程。 如果您有任何意见或链接可以帮助我解决此问题并开始编码,请告诉我。

I recently decided to try some java web development, so I installed xampp, the tomcat add-on, and java. I have looked at some of the JSP page examples that came with it, so I know that tomcat is at least working. However when I threw the stripes folder into the same examples directory and tried to access the files I received the following error.

org.apache.jasper.JasperException: The
absolute uri:
http://stripes.sourceforge.net/stripes.tld
cannot be resolved in either web.xml
or the jar files deployed with this
application

Now, I am a complete beginner when it comes to using tomcat or jsp pages in general. I may have missed some trivially easy step. I have searched the web for a few hours and I haven't found a very good tutorial on how to set up and start using the stripes framework. So let me know if you have any input or links to help me resolve this issue and get started coding.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时常饿 2024-08-11 21:08:48

请参阅 Stripes 的快速入门指南。 Stripes 下载中还包含一个示例应用

请注意,您必须将该示例应用程序部署为 Tomcat 中的 Web 应用程序(例如,将 war 文件复制到 Tomcat 的 webapps 文件夹),您不能只是“将 stripes 文件夹”“扔进” “例子”。

Take a look at Quick Start Guide for Stripes. There is also a sample app included as part of Stripes download.

Note that you have to deploy that sample app as web application in Tomcat (e.g. copy war file to Tomcat's webapps folder), you can't just "throw stripes folder" into 'examples'.

玩物 2024-08-11 21:08:48

具体问题是缺少 jar 文件。从 Stripes 1.5.3 开始,错误有点不同:

org.apache.jasper.JasperException: The Absolute uri: http://java.sun.com/jsp/jstl/core 无法在 web.xml 或使用此应用程序部署的 jar 文件中解析

我从示例库复制了 jstl.jar 和 standard.jar到我的应用程序的库,应用程序随后启动良好。

The specific issue is a missing jar file. As of Stripes 1.5.3 the error is a bit different:

org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

I copied jstl.jar and standard.jar from the examples lib to my app's lib, and the app launched fine afterwards.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文