public static Connection getConnection(){
? ? ? ? Connection connection? = null;
? ? ? ? ? ? ? try {
? ? ? ? ? ? ? //連接mysql的JDBC
? ? ? ? ? ? ? Class.forName("com.mysql.jdbc.Driver");
? ? ? ? ? ? ? //連接數(shù)據(jù)庫帖族,第一參數(shù)url啥酱,第二參數(shù)用戶名合是,第三參數(shù)密碼
? ? ? ? ? ? //url為jdbc:mysql://+Host Name/IP Address(ip地址)+Port(端口 ? ? ? ? ? ? 號)+數(shù)據(jù)庫名
? ? connection=DriverManager.getConnection("jdbc:mysql://localhost:3306/helloservlet","root","123456");
}?
? ? ? ? ? catch (ClassNotFoundException e) {
? ? ? ? ?e.printStackTrace();
? ? ? } catch (SQLException e) {
? ? ? ? e.printStackTrace();
}
? ? ? ?if (connection ==null) {
? ? ? System.out.println("conn 為空");
}
? ? ? ?return connection;
}
同時需要向servlet添加一個mysql的連接jar包:mysql-connector-java-5.1.34
進行添加