
IDE: Eclipse
프로젝트 생성: ctrl + n

Dynamic Web Project 생성

Project name 설정하고 next-next-finish

Dynamice Web Project를 생성하면 위와 같은 구조로 생성이 된다.
webapp 안에 text.jsp 파일을 생성한다.


test.jsp를 입력 후 finish

<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
</body>
</html>
자동으로 생성된 코드!
이제 시작!
300x250
'SOMEDAY > JAVA' 카테고리의 다른 글
[JAVA] 예외 1~9 Exception 예외 (try~catch finally throws) (0) | 2022.02.12 |
---|---|
[JAVA] 인터페이스 1~5 interface , 다형성 (0) | 2022.02.11 |
[JAVA] 상속 1~6 Inheritance , overriding , overloading , super (0) | 2022.02.10 |
[JAVA] 객체지향 프로그래밍 7~9 생성자 this / 클래스화 인스턴스화 (0) | 2022.02.09 |
[JAVA] 객체지향 프로그래밍 4~6 class instance static (0) | 2022.02.08 |