URL87
URL87

Reputation: 11012

connect to DB from servlet

I have jsp form :

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" href="./Styles/Site.css" type="text/css" />
<title>Create new customer</title>
</head>
<body>
    <fieldset>
        <legend>Create new customer</legend>
        <form action="CreateCustomerServlet" method="GET">
            // text of form ... 
            <input type="submit" value="Create customer" />
        </form>
    </fieldset>

</body>
</html>

that go to CreateCustomerServlet -

package control;

import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource;
import com.mysql.jdbc.jdbc2.optional.MysqlDataSource;

import Model.Customer;
import Model.Gender;

/**
 * Servlet implementation class CreateCustomerServlet
 */
@WebServlet("/CreateCustomerServlet")
public class CreateCustomerServlet extends HttpServlet {
    // members ..

    private static final long serialVersionUID = 1L;

    /**
     * @see HttpServlet#HttpServlet()
     */
    public CreateCustomerServlet() {
        super();
        // TODO Auto-generated constructor stub
    }

    /**
     * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse
     *      response)
     */
    protected void doGet(HttpServletRequest request,
            HttpServletResponse response) throws ServletException, IOException {

        // get the parameters from the jsp form  .. 
            saveInDB() ; 
    }

    private void saveInDB() throws ClassNotFoundException, SQLException {

        Connection connection = null;
        try {
            String strServer = "jdbc:mysql://127.0.0.1:3306/testdb";
            MysqlDataSource ds = new MysqlConnectionPoolDataSource();
            ds.setServerName(strServer);
            ds.setDatabaseName("testdb");
            connection = ds.getConnection("root", "");
            Statement statement = connection.createStatement();
            statement.execute(" /** sql INSERT statement **/");
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {
            try {
                connection.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }

    }
}

when it get to the line - connection = ds.getConnection("root", ""); it throws exception - com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Cannot load connection class because of underlying exception: 'java.lang.NumberFormatException: For input string: "mysql:"'.

I use with MySql , in http://localhost/phpmyadmin/ I have a DB testdb with the users as in the snapshot -

enter image description here

and both of the user have empty password as the snapshot -

enter image description here

Upvotes: 0

Views: 2275

Answers (2)

alain.janinm
alain.janinm

Reputation: 20065

You mix 2 different ways to establish a connection.

You can do :

MysqlDataSource ds = new MysqlDataSource();
ds.setServerName("localhost");
ds.setPort("3306");
ds.setDatabaseName("testdb");
ds.setUser("root");
ds.setPassword("");
Connection connection = ds.getConnection();

or

Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/testdb","root","");

By the way it's a good practice to put the connection settings in a property file. You should read this excellent post and this related article.

Upvotes: 1

M Abbas
M Abbas

Reputation: 6479

the server name must be somthing like localhost or 127.0.0.1 and not jdbc:mysql://127.0.0.1:3306/testdb

String strServer = "127.0.0.1";
ds.setServerName(strServer);

and you have to set the port number:

 dataSource.setPort(3306);

Upvotes: 1

Related Questions