maven pom.xml 添加 servlet和jsp依赖
Posted Lehend
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven pom.xml 添加 servlet和jsp依赖相关的知识,希望对你有一定的参考价值。
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
附带web.xml的初始配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0"
metadata-complete="true">
</web-app>
以上是关于maven pom.xml 添加 servlet和jsp依赖的主要内容,如果未能解决你的问题,请参考以下文章