我正在使用 GWT 连接到 MYSQL。但是我每次收到如下错误: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure 最后一个成功发送到服务器的数据包是0毫秒前。驱动程序没有收到来自服务器的任何数据包。 我已经把驱动文件放到了war\WEB-INF\lib。并且驱动程序已经加载。对于普通的 JAVA 项目,我可以使用相同的代码在 MYSQL 中查找文件。但是为什么不能在 GWT 项目中使用相同的代码呢?
公共类 GreetingServiceImpl 扩展 RemoteServiceServlet 实现 GreetingService {
public String greetServer(String input) throws IllegalArgumentException {
Connection conn = null;
String url ="jdbc:mysql://localhost:3306/pcmorder";
String driver = "com.mysql.jdbc.Driver";
String user = "root";
String pass = "123456";
//String query = "SELECT id FROM tb_user WHERE username = ";
String sql=null ;
String[] namelist;
int name1=0 ;
try {
Class.forName(driver).newInstance();
System.out.println("OK");
conn = DriverManager.getConnection(url, user, pass);