我从Java EE开始,在Eclipse for Java EE中设置一个简单的项目。该结构是传统的Java Web项目默认:Tomcat与Eclipse和一些基本servlet集成。
详细说明:我有这个班来代表一个联系人: 包br.myagenda.data;
import java.util.Calendar;
public class Contato {
private long _id;
private final String _nome;
private final String _endereco;
private final String _email;
private final Calendar _dataNascimento;
public Contato(String nome, String endereco, String email, Calendar dataNascimento)
{
_nome = nome;
_endereco = endereco;
_email = email;
_dataNascimento = dataNascimento;
}
public void setId(long id) {
_id = id;
}
public long getId() {
return _id;
}
public String getNome() {
return _nome;
}
public String getEndereco() {
return _endereco;
}
public String getEmail() {
return _email;
}
public Calendar getDataNascimento() {
return _dataNascimento;
}
这是在SQL中翻译上述类的实例的另一个类的一部分: import br.myagenda.data.Contato; import br.myagenda.util.SqlConnectionFactory;
public class ContatoDAO {
private final Connection _connection;
public ContatoDAO() {
_connection = SqlConnectionFactory.getConnection();
}
public void add(Contato contato) {
String sqlStatement = "INSERT INTO contatos (nome, email, endereco, data_nascimento)"
+ "VALUES (?,?,?,?)";
PreparedStatement statemant = null;
try {
statemant = _connection.prepareStatement(sqlStatement);
statemant.setString(1, contato.getNome());
statemant.setString(2, contato.getEmail());
statemant.setString(3, contato.getEndereco());
Date dataParaGravar = new Date(Calendar.getInstance().getTimeInMillis());
statemant.setDate(4, dataParaGravar);
statemant.execute();
statemant.close();
} catch(SQLException e) {
throw new RuntimeException(e);
}
}
...
一个主要方法叫做" ContatoDaoTest"因为显而易见的原因而调用上述类方法。
有趣的是,问题是:如果我运行测试类(作为普通的Java应用程序运行),该类就可以正常访问数据库。
但是,我有HTML页面来显示填充表单的页面和用于存储用户输入的Servlet。基本上,它是页面访问者的页面注册联系人,因此,在内部,servlet将实例Contato和ContatoDAO存储在数据库中。
<!DOCTYPE html SYSTEM "html.dtd"><html>
<head>
<title>MyAgenda --- Adicionar um contato</title>
</head>
<body>
<form action="addContact">
Nome: <input type="text" name="nome"/><br />
E-Mail: <input type="text" name="email"/><br />
Endereço: <input type="text" name="address" /><br />
Data Nascimento: <input type="text" name="dataNascimento" /><br />
<input type="submit" value="Gravar" />
</form>
</body>
</html>
但是,当我解雇&#34; Gravar&#34;按钮,Tomcat显示一个错误页面,说有一个java.sql:SQLException:找不到合适的驱动程序!
问题在于:为什么作为普通的Java应用程序,数据库访问才有效,但作为Java Web应用程序,它不起作用?
注意:
1 - WebContent / lib中的mysql-connector IS。
2 - 将mysql-connector IS添加到eclipse构建路径中。
3 - 我可以通过&#34; import&#34;来访问mysql-connector内部类。
添加:实际上,我找到了解决方法,但我觉得这不太方便:
古代SqlConnectorFactory:
public class SqlConnectionFactory {
public static Connection getConnection() {
try {
return DriverManager.getConnection("jdbc:mysql://localhost/my_agenda", "root", "senhadomysql");
} catch(SQLException e) {
throw new RuntimeException(e);
}
}
}
新:
public class SqlConnectionFactory {
public static Connection getConnection() {
try {
DriverManager.registerDriver(new com.mysql.jdbc.Driver()); //this line made the diference.
return DriverManager.getConnection("jdbc:mysql://localhost/my_agenda", "root", "senhadomysql");
} catch(SQLException e) {
throw new RuntimeException(e);
}
}
}
答案 0 :(得分:0)
为什么作为普通的Java应用程序,数据库访问有效,但作为一个 Java Web应用程序,它不起作用?
Tomcat找不到驱动程序com.mysql.jdbc.Driver。带有mysql-connector-java的jar应该在(your_tomcat)/ lib目录下Tomcat
你的SqlConnectionFactory看起来应该是这样的
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection(DB_URL,USER,PASS);
有关详细信息,您可以查看链接: http://www.tutorialspoint.com/jdbc/jdbc-sample-code.htm