티스토리 뷰

배운 것 기록/jsp

[jsp] DB연결

키죽 2022. 5. 30. 13:37

JDBC 프로그램 설치

webapp - WEB-INF - lib - mysql-connector-java-8.0.17.jar 넣기

(C:\Program Files (x86)\MySQL\Connector J 8.0)

 

1. JDBC 프로그램 불러오기

<%Class.forName("com.mysql.cj.jdbc.Driver");%>

2. JDBC 프로그램 이용해서 DB 서버 접속 => 연결정보 저장
DB 서버에 접근할 DB 주소, ID, 비밀번호

<%
String dbUrl="jdbc:mysql://localhost:3306/jspdb1?serverTimezone=UTC";
String dbId="root";
String dbPass="1234";
%>

 

3. DB 연결 정보를 Connection형 con변수에 저장

<%Connection con=DriverManager.getConnection(dbUrl, dbId, dbPass);%>
연결 성공 <%=con %>

'배운 것 기록 > jsp' 카테고리의 다른 글

[jsp] delete, list 구현  (0) 2022.06.15
[jsp] insert, update 구현(DB연결, 쿼리 실행)  (0) 2022.06.14
[jsp] login 구현  (0) 2022.06.12
[jsp] main, logout 구현  (0) 2022.06.11
[jsp] form request.getParameter  (0) 2022.05.19
댓글
최근에 올라온 글
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함