是否可以从命令行执行 JSP?

发布于 2024-12-18 01:35:27 字数 95 浏览 1 评论 0原文

我已经将 Tomcat 6.0 下的 War 部署到 Linux 服务器中。在该 Linux 机器中,我们没有打开浏览器的权限。

是否可以从命令行执行 JSP?

I have deployed our War under Tomcat 6.0 into Linux server. In that Linux machine, we don't have permissions to open a browser.

Is it possible to execute a JSP from command line?

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

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

发布评论

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

评论(1

一腔孤↑勇 2024-12-25 01:35:27

您可以使用 wget (<-- 单击链接查看手册):

wget http://localhost:8080/context/page.jsp

与具体问题无关,但我想知道这有什么用。例如,如果您滥用 JSP 来执行一些 Web 应用程序初始化,那么您应该在 ServletContextListener(<-- 单击链接查看 Javadoc)。

另请参阅:

You can use among others wget (<-- click the link to see the manual):

wget http://localhost:8080/context/page.jsp

Unrelated to the concrete problem, I however wonder how that's useful. If you're for example abusing a JSP to do some webapp initialization, then you should instead have done it in a ServletContextListener (<-- click the link to see the Javadoc).

See also:

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