Spring配置MySQL數據庫的方法如下:
1. 添加MySQL驅動依賴
在pom.xml文件中添加以下依賴:
```
```
2. 配置數據源
在application.properties文件中配置數據源:
```
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/數據庫名稱
spring.datasource.username=用戶名
spring.datasource.password=密碼
```
3. 配置JdbcTemplate
在配置類中添加以下代碼:
```
@Bean
public JdbcTemplate jdbcTemplate(DataSource dataSource) {
return new JdbcTemplate(dataSource);
}
```
4. 使用JdbcTemplate
在需要使用數據庫操作的類中注入JdbcTemplate,并調用其方法進行數據庫操作。
注:以上方法適用于Spring Boot項目,如果是傳統的Spring項目,需要在XML配置文件中進行數據源和JdbcTemplate的配置。