pom.xml 수정
<repository>
<id>maven.java.net</id>
<url>https://maven.java.net/content/repositories/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
web.xml 수정
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0"
id="WebApp_ID">
...
</web-app>
'메모모음' 카테고리의 다른 글
윈도우PC에서 PORT로 프로그램 찾아 죽이기 (0) | 2024.12.16 |
---|---|
Servlet버전에 따른 web.xml파일의 스키마 헤더 (1) | 2024.12.16 |
TOMCAT 자주 보는 오류 대응 (0) | 2024.09.29 |