将 Tomcat 服务器嵌入 CD-ROM(或不可写磁盘)
假设我需要制作一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用 此链接。 它描述了如何在 ANT 或 Maven 中预编译 JSP 文件。
Try using this link. It describes how to pre compile your JSP files in ANT or Maven.
这就是我所做的,
我很惊讶我们使用的许多库都假设 WAR 已分解并尝试读取 WEB-INF 中的文件。
This is what I did,
I was amazed so many libraries we use assume that the WAR is exploded and try to read files in WEB-INF.
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.