WEB-INF 是否在 CLASSPATH 中?

发布于 2024-07-17 08:43:00 字数 76 浏览 7 评论 0原文

WEB-INF 文件夹是否位于 Java Web 应用程序的 CLASSPATH 中?

Is the WEB-INF folder in the CLASSPATH of a Java Web application?

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

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

发布评论

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

评论(2

随遇而安 2024-07-24 08:43:01

我假设您指的是 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.

榕城若虚 2024-07-24 08:43:01

另外,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.

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