如何从 jsp 页面创建到 war 文件的链接

发布于 2024-10-17 10:54:33 字数 57 浏览 1 评论 0原文

我有一个 war 文件,我想将其添加到另一个项目中并调用它。如何创建一个链接 tag() 来调用它?

I have a war file and I want to add it to another project and call it. how to create a link tag() to call it?

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

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

发布评论

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

评论(3

一桥轻雨一伞开 2024-10-24 10:54:33

我假设您想重定向到在不同上下文中运行的“另一场战争”的 index.jsp

从您的 jsp 中,您可以发送重定向到另一个 index.jsp 的位置。例如:

response.sendRedirect("http://localhost:8080/othercontext/index.jsp");

I assume you want to redirect to the index.jsp of "another war" running in a different context.

From your jsp, you can send a redirect to the location of the other index.jsp. For example:

response.sendRedirect("http://localhost:8080/othercontext/index.jsp");
眼波传意 2024-10-24 10:54:33

你不能这样做。 .war 文件本身就是一个 Web 应用程序,在部署它之前,您无法使用它做太多事情。 (与 .jar 文件相反,其中包含可在其他项目中使用的类)

You can't do this. A .war file is a web app in its own right, until it's deployed there ain't much you can do with it. (As opposed to a .jar file, which contains classes you can use in other projects)

终陌 2024-10-24 10:54:33

如果您想重用某些资源,请参阅 Weblets 项目(以前位于 java.net 上)

If you want to reuse some resources see Weblets project (formerly on java.net)

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