초급의 끄적거림

[과정평가형] 외부 라이브러리 복사 본문

과정평가형

[과정평가형] 외부 라이브러리 복사

codingD 2019. 9. 3. 11:49

1. Tomcat 라이브러리 (servlet-api.jar)

D:\톰캣설치폴더\lib

 

2. 오라클 DB 오라클 라이브러리 (ojdbc6.jar)

C:\오라클설치폴더(oraclexe)\app\oracle\product\11.2.0\server\jdbc\lib\ojdbc6.jar

 

만들고자 하는 프로젝트의 lib 폴더 (프로젝트 - WEB-INF - lib) 에 둘을 복사-붙여넣기

 

 

3. 시험 볼 때 팁

  - html 5의 구조를 만들어야하기 때문에 시험 볼 때는 새 파일 html의 위 구조를 복사-붙여넣기 할 것

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html><!-- html 5 구조를 만들어야 하기 때문에 시험 볼 때는 새파일 html의 위 구조를 복사 - 붙여넣기 할 것 -->
<html>
<head>
<meta charset="UTF-8">
<title>index.jsp</title>
</head>
<body>

</body>
</html>
Comments