WEB-INF 是否在 CLASSPATH 中?
WEB-INF
文件夹是否位于 Java Web 应用程序的 CLASSPATH
中?
Is the WEB-INF
folder in the CLASSPATH
of a Java Web application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您指的是 Web 应用程序文件夹结构根目录中的
/WEB-INF
目录。不,它不在类路径中。
/WEB-INF/classes
位于类路径中,/WEB-INF/lib
中的 JAR 文件也是如此。I'm assuming you're referring to the
/WEB-INF
directory in the root of the web application folder structure.No, it's not in the classpath.
/WEB-INF/classes
is on the classpath though, and so are the JAR files in/WEB-INF/lib
.另外,WEB-INF 中的文件受到保护,不会被 Web 容器请求,即它们对外界不可见。
Additionally files in WEB-INF are protected against being requested by the web-container, i.e. they are invisible to the outside world.