mysql database url code example

Example 1: mysql url

<!-- MySQL dataSource config -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="com.mysql.cj.jdbc.Driver" /><!-- mysql 8 -->
    <property name="url" value="jdbc:mysql://localhost:3306/mydb?useSSL=false&serverTimezone=UTC&characterEncoding=utf-8" />
    <property name="username" value="matt" />
    <property name="password" value="12345" />
</bean>

Example 2: mysql jdbc connection url

jdbc:mysql://host1:33060/sakila

Tags:

Sql Example