MySql和Java中的未知数据库错误

我尝试使用以下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:有两个额外的“ /”是我的问题。问题解决了。


蓝山帝景
浏览 178回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java