sql >> Database >  >> RDS >> Mysql

Kan geen JDBC-verbinding maken

Dit kan je helpen

Voeg ook gebruikersnaam en wachtwoord toe

<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
   <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
   <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/sampleDB</property>
   <property name="hibernate.connection.username">yourUserNameForMysql</property>
   <property name="hibernate.connection.password">passwordForMySql</property>

Gebruik na Mysql 5.x de klasse org.hibernate.dialect.MySQL5Dialect

<property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
   <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
   <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/sampleDB</property>
   <property name="hibernate.connection.username">yourUserNameForMysql</property>
   <property name="hibernate.connection.password">passwordForMySql</property>


  1. Bevat MySQL bij MAMP geen configuratiebestand?

  2. Laad gegevens in bestand MySQL MacOS

  3. Hoe schrijf je een geparametriseerde SQL-query in javascript?

  4. Omgevingsvariabelen instellen voor Laravel 5 op AWS EC2 met MySQL