是否可以从命令行执行 JSP?
我已经将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 wget (<-- 单击链接查看手册):
与具体问题无关,但我想知道这有什么用。例如,如果您滥用 JSP 来执行一些 Web 应用程序初始化,那么您应该在
ServletContextListener
(<-- 单击链接查看 Javadoc)。另请参阅:
You can use among others wget (<-- click the link to see the manual):
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: