我尝试使用以下Java代码连接到数据库:
try {
String connectionURL = "jdbc:mysql://11.11.111.111:3306/srfms";
Connection connection = null;
Class.forName("com.mysql.jdbc.Driver").newInstance();
connection = DriverManager.getConnection(connectionURL, "root", "password");
if(!connection.isClosed())
out.println("Successfully connected to " + "MySQL server using TCP/IP...");
connection.close();
}catch(Exception ex){
out.println(ex);
}
这段代码可以成功运行,但是我还必须运行另一个Spring MVC代码,但是该代码不起作用,这是database.properties:
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql:////11.11.111.111:3306/srfms
jdbc.username=root
jdbc.password=password
错误是:com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException:未知数据库'srfms'
编辑: jdbc.url = jdbc:mysql:////11.11.111.111:3306 / srfms:有两个额外的“ /”是我的问题。问题解决了。
相关分类