美文网首页
servlet连接mysql

servlet连接mysql

作者: 曦晨峰 | 来源:发表于2016-12-02 12:04 被阅读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

    进行添加

    相关文章

      网友评论

          本文标题:servlet连接mysql

          本文链接:https://www.haomeiwen.com/subject/lxjxyttx.html