在很多 JSP/Servlet 应用程序示例中,为什么使用 .inc 扩展名而不是 .jsp 进行包含?
在我看到的许多 JSP/Servlet 应用程序示例中,当应用程序通过指令或操作 include 包含 JSP 中的资源时,包含的文件具有 .inc
扩展名。这是为什么?为什么我们不使用 .jsp
扩展名呢?
In a lot of JSP/Servlet app examples that I saw, when the app includes a resource in a JSP through the directive or action include, then the file included had an .inc
extension. Why is that? Why we do not use a .jsp
extension instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.inc
是 include 的缩写。jsp
扩展名意味着该文件是一个完整的页面;使用inc
扩展名可以清楚地表明该文件并不是独立的。.inc
is short for include. Ajsp
extension would imply that the file was a complete page; using aninc
extension makes it clear that the file isn't intended to stand alone.