apache tomcat / Core의 64-bit Windows zip 다운 (https://tomcat.apache.org/download-80.cgi)
환경 변수 설정 (CATALINA_HOME / apache-tomcat-8.5.81 주소)
Path 에는 apache-tomcat-8.5.81\bin 폴더 경로 설정
명령 프롬프트 startup 실행
톰캣 conf폴더에 logging.properties 파일을 열고, 47번줄에 UTF-8을 EUC-KR로 변경
톰캣 conf폴더에 server.xml 파일을 열고, 72번줄에 URIEncoding="UTF-8" 추가
이클립스로 돌아와서 pom.xml 에서 properties의 1.07을 1.11로 변경
dependencies 에 다음과 같은 내용 입력 (maven repository 검색함)
<dependencies>
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>2.3.3</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
jv300 프로젝트 오른쪽 클릭 -> Maven -> Update Project -> 확인
src\main\webapp\WEB-INF\web.xml 파일 선택 후 하단의 Source 클릭 한 후 밑의 코드를 입력
<?xml version="1.0" encoding="utf-8" ?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/MXLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<display-name>Archetype Created Web Application</display-name>
</web-app>
index.jsp 오른쪽 클릭 -> Run As -> Run on Server -> apache 8.5 선택 후 Next, Finish
Window - Show View - Servers 클릭 하여 서버를 껏다 켤 수 있음