servlet连接mysql

2016-12-02  本文已影响0人  曦晨峰

public static Connection getConnection(){

        Connection connection  = null;

              try {

              //连接mysql的JDBC

              Class.forName("com.mysql.jdbc.Driver");

              //连接数据库,第一参数url,第二参数用户名,第三参数密码

            //url为jdbc:mysql://+Host Name/IP Address(ip地址)+Port(端口             号)+数据库名

    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

进行添加

上一篇下一篇

猜你喜欢

热点阅读