.jsp 文件放置在 Web 项目中的位置
我有一个问题,将视图 (.jsp) 文件放在 Web 应用程序中的位置。有点令人困惑,它可能位于 WEB-INF 文件夹内部,也可能位于 WEB-INF 文件夹外部。
许多 Spring 项目视图(.jsp)文件通过创建子文件夹存储在 WEB-INF 文件夹中。
我看到了很多示例 spring 项目,它在 WEB-INF 文件夹中包含 .jsp 文件。 的最佳实践是什么?
那么,我的问题阿米拉
I have an issue where to put view (.jsp) file in the web applications.little bit confuse it may be inside the WEB-INF folder or out side the WEB-INF folder.
Lot of spring projects view(.jsp) files are stored inside the WEB-INF folder by creating sub folders.
I saw lot of sample spring projects it includes .jsp files inside the WEB-INF folder.
So What is the best practice for my question
Amila
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的应用程序是以 servlet 为中心的,那么您可以在 WEB-INF 下添加 .jsp 文件并通过 RequestDispatcher 请求它们。如果不是,则将 .jsp 放在
WEB-INF
之外。If your application is
servlet centric
then you may add .jsp file under WEB-INF and request them viaRequestDispatcher
. If it is not then put .jsp outside theWEB-INF
.