Mybatis逆向工程运行出现错误java.sql.SQLException: Cannot connect to database

错误

Mybatis逆向工程运行出现错误java.sql.SQLException: Cannot connect to database_第1张图片

解决方法

可能是connectionURL书写错误。

  <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                        connectionURL="jdbc:mysql:/localhost:3306/eesy"
                        userId="root"
                        password="root"
        />

你可能感兴趣的:(bug大全,mybatis,mysql)