为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

蓝山帝景 2021-05-06 14:15:32
我尝试使用以下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.Driverjdbc.url=jdbc:mysql:////11.11.111.111:3306/srfmsjdbc.username=rootjdbc.password=password错误是:com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException:未知数据库'srfms'编辑: jdbc.url = jdbc:mysql:////11.11.111.111:3306 / srfms:有两个额外的“ /”是我的问题。问题解决了。
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 177 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信