한글설정
response.setContentType("text/html; charset=UTF-8");
브라우저에게 html로 보내기 위해 쓰는 코드
PrintWriter out = response.getWriter();
DB와 연결하기 위해 Connection을 만든다
Connection conn = null;
try {
// 0.드라이버 로딩 (생략가능)
Class.forName("com.mysql.jdbc.Driver");
// 1. DB연결
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/webshop?useSSL=false", "root", "1234");
} catch (SQLException e) {
out.println("DB연결 실패");
} catch (ClassNotFoundException e) {
out.println("드라이버 클래스를 찾을 수 없음");
return;
}
out.println("DB 연결 테스트 완료");
try {
conn.close();
} catch (SQLException e) {
out.println("DB 연결 닫는 에러");
}