如何从 jsp 页面创建到 war 文件的链接
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我假设您想重定向到在不同上下文中运行的“另一场战争”的
index.jsp
。从您的 jsp 中,您可以发送重定向到另一个 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:
你不能这样做。 .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)
如果您想重用某些资源,请参阅 Weblets 项目(以前位于 java.net 上)
If you want to reuse some resources see Weblets project (formerly on java.net)