...
Eclipse 실행
준비한 Eclipse를 실행 합니다.
정보 |
---|
Step 1: Create a New Dynamic Web Project in Eclipse
Step 2: Create the "libs" Folder for External Libraries
Step 3: Add the "libs" Folder to the Build Path
Step 4: Create a Simple Servlet
Step 5: Implement the ServletEdit the |
Step 1) 프로젝트 생성
1. File > New > Dynamic Web Project
.
...
3. 브라우저 창에서 http://localhost:8080/dynamic-web-example/HelloServlet 접속
4. JSON 회신 확인
Project 구조
다음은 일반적인 dynamic 프로젝트의 폴더 구조를 나타낸다.
lua
MyWebProject/
├── .classpath
├── .project
├── .settings/
├── build/
├── libs/ <-- External libraries
│ └── gson-2.8.6.jar
├── src/ <-- Java source folder
│ └── com/
│ └── example/
│ └── HelloServlet.java
├── WebContent/
│ ├── META-INF/
│ ├── WEB-INF/
│ │ ├── lib/ <-- Web app libraries (optional)
│ │ ├── web.xml <-- Deployment descriptor (optional)
│ └── index.jsp <-- Default JSP page
└── build.xml
...