我正在使用GWT连接到MYSQL。 但我每次得到的错误如下: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:通讯链接失败 成功发送到服务器的最后一个数据包是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);