将 Tomcat 服务器嵌入 CD-ROM(或不可写磁盘)

发布于 2024-08-01 17:09:20 字数 75 浏览 4 评论 0原文

假设我需要制作一个带有 Tomcat 服务器的 CDROM。 在构建要刻录的 CD 映像之前,如何保证所有 jsp 文件都已正确编译?

Suppose I need to make a CDROM with a Tomcat server. How can I guarantee that all the jsp files have correctly been compiled before I build the CD image to be burnt ?

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

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

发布评论

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

评论(3

万劫不复 2024-08-08 17:09:20

尝试使用 此链接。 它描述了如何在 ANT 或 Maven 中预编译 JSP 文件。

Try using this link. It describes how to pre compile your JSP files in ANT or Maven.

熊抱啵儿 2024-08-08 17:09:20

这就是我所做的,

  1. 预编译所有 JSP。
  2. 运行所有未爆炸的战争。
  3. 测试您的服务器并确保 webapps 和工作目录中没有创建任何内容。

我很惊讶我们使用的许多库都假设 WAR 已分解并尝试读取 WEB-INF 中的文件。

This is what I did,

  1. Precompile all your JSPs.
  2. Run all your WARs unexploded.
  3. Test your server and make sure nothing is created in webapps and work directory.

I was amazed so many libraries we use assume that the WAR is exploded and try to read files in WEB-INF.

深者入戏 2024-08-08 17:09:20

Tomcat 使用 Jasper 进行 JSP 管理,文档中有一些指导 关于预编译 JSP。 服务器启动一次后,即可将目录复制到目标磁盘。

或者,Ant 有一个(已弃用的)JSP 编译 任务。

更新:有一个 博客 描述了如何使用 Ant 编译 JSP。

Tomcat uses Jasper for JSP management, there's some guidance in the documention on precompiling JSPs. Once the server has been started up once, you can copy the directories to the target disk.

Alternatively, Ant has a (deprecated) JSP compilation task.

Update: There's a blog that describes how to use Ant to compile your JSPs.

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