从 servlet 连接到数据库
Posted
技术标签:
【中文标题】从 servlet 连接到数据库【英文标题】:connect to DB from servlet 【发布时间】:2012-07-27 09:57:47 【问题描述】:我有 jsp 表单:
<!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>
去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();
当它到达线路时 - connection = ds.getConnection("root", "");
它抛出异常 - com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Cannot load connection class because of underlying exception: 'java.lang.NumberFormatException: For input string: "mysql:"'.
我与 MySql 一起使用,在 http://localhost/phpmyadmin/
我有一个 DB testdb
与快照中的用户一样 -
并且两个用户的密码都为空 -
【问题讨论】:
【参考方案1】:您可以混合使用 2 种不同的方式来建立连接。
你可以这样做:
MysqlDataSource ds = new MysqlDataSource();
ds.setServerName("localhost");
ds.setPort("3306");
ds.setDatabaseName("testdb");
ds.setUser("root");
ds.setPassword("");
Connection connection = ds.getConnection();
或
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/testdb","root","");
顺便说一下,将连接设置放在属性文件中是一个很好的做法。您应该阅读这篇优秀的post 和相关的article。
【讨论】:
【参考方案2】:服务器名称必须类似于 localhost
或 127.0.0.1
而不是 jdbc:mysql://127.0.0.1:3306/testdb
String strServer = "127.0.0.1";
ds.setServerName(strServer);
你必须设置端口号:
dataSource.setPort(3306);
【讨论】:
以上是关于从 servlet 连接到数据库的主要内容,如果未能解决你的问题,请参考以下文章
App Engine Java Servlet 未连接到 Cloud SQL
从 Tomcat servlet 连接到 HTTP 服务器时出现 AccessControlException
我应该如何在基于 servlet 的应用程序中连接到 JDBC 数据库/数据源?
我应该如何在基于 servlet 的应用程序中连接到 JDBC 数据库/数据源?