TestContainers 和 Mysql :用户 ''@'172.17.0.1' 的访问被拒绝(使用密码:NO)

TestContainers and Mysql : Access denied for user ''@'172.17.0.1' (using password: NO)

我写了一个简单的存储库来测试 Kotlin Exposed with TestContainers。我使用的数据库是mysql.

这是我的代码:

class StudentsRepositoryTest: ShouldSpec({
     val container = getMysqlContainer()
     val mysqlJdbcUrl = container.jdbcUrl

     beforeSpec {
        Database.connect(mysqlJdbcUrl, "com.mysql.cj.jdbc.Driver")
        transaction {
            SchemaUtils.create(Students)
        }
     }

     ... // some tests


     private fun getMysqlContainer(): MySQLContainer<Nothing> {
       return MySQLContainer<Nothing>("mysql:5.7").apply {
          withUsername("root")
          withPassword("")
          withEnv("MYSQL_ROOT_PASSWORD", "%")
          withDatabaseName("test")
          start()
      }
}
 

代码在 beforeSpec

处失败
Access denied for user ''@'172.17.0.1' (using password: NO)

也许我遗漏了什么,任何帮助将不胜感激

我使用的库:

我终于找到了问题的答案。原因是我忘记将用户名和密码传递给与Exposed库的连接。

val mysqlJdbcUrl = container.jdbcUrl
val username = container.username
val password = container.password
Database.connect(mysqlJdbcUrl, "com.mysql.cj.jdbc.Driver", username, password)