본문 바로가기
카테고리 없음

하둡 프로젝트 Maven 환경으로 만들기

by 인디코더 2018. 11. 23.

이클립스 하둡 프로젝트 Maven 환경으로 만들기 

1. 새로운 프로젝트에서 Maven Project를 만듭니다.

2. 웹 환경으로 만들기 때문에 , Artifact id 잘 확인하면 됩니다.

3. Artifact Id 이름으로 프로젝트가 생성이 됩니다.

4. src에서 폴더를 만들면 

5. 아래와 같이 JavaResources 밑으로 폴더가 만들어 집니다.

6. web.xml을 고쳐주시구요 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 
id="WebApp_ID" version="3.0">
  <display-name>hadoop</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>
cs

7. build Path에서 library 2개를 고쳐주시구요 (server, JRE)

8. build Path에서 Project Facet 부분에서 Java의 버전을 1.8로 Runtimes의 서버를 선택

9. 프로젝트의 X박이 없어지고, index.html을 실행하면 Hello World! 가 출력이 됩니다.

10. pom.xml(전)

https://mvnrepository.com/search?q=hadoop

10. pom.xml(후)

이제 프로젝트 시작 !



반응형