我有一个非常基本的Spring项目,它使用JSTL和jsp作为视图,当我在页面上包含JSTL标记时,我开始收到404
错误。没有标签就行得很好。
This帖子建议在WEB-INF \ lib目录中包含jstl jar,这解决了我的问题,这有点道理......但是我想知道为什么只需要将此jar添加到lib目录中吗?还有其他依赖项不需要。
所有依赖项都由Maven管理。
以下是项目结构,显示了所有使用的库。
和pom.xml ......
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>SpringClient</groupId>
<artifactId>Client</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.2.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.2.6.RELEASE</version>
</dependency>
<!-- http://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.2.6.RELEASE</version>
</dependency>
<!-- Included because as a dependency of spring -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<!-- http://mvnrepository.com/artifact/jstl/jstl -->
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
如您所见,jstl jar现在列在两个地方,为什么这有必要?
答案 0 :(得分:0)
从网络服务器检查您的运行命令。有些通过将其添加到类路径参数中来添加其他库,其他Web服务器具有特殊文件夹。
从我的角度来看,当你使用maven时,你应该将libs直接添加到你的项目中。检查http://maven.apache.org/plugins/maven-war-plugin/examples/including-excluding-files-from-war.html或http://maven.apache.org/plugins/maven-assembly-plugin/usage.html一般