Is the WEB-INF
folder in the CLASSPATH
of a Java Web application?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Additionally files in WEB-INF are protected against being requested by the web-container, i.e. they are invisible to the outside world.
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
.