Jsp - DB(Mysql)와 연동
localhost에 있는 db에 연결/ 연결을 원하는 테이블명을 넣어서 작성한다. Class.forName("com.mysql.jdbc.Driver"); String url = "jdbc:mysql://localhost/테이블명?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&validationQuery=select 1&characterEncoding=UTF-8"; con = DriverManager.getConnection(url,DBID,DBpwd); 다음과 같이 연결 정보를 리턴해준다. public static Connection getConnection() { Connec..
2020.08.02