mysql依赖检测失败

发布时间: 2023-11-21 11:06 阅读: 文章来源:1MUMB928PS

引入mysql源需要如下步骤

1、pom.xml引入依赖

mysql

mysql-connector-java

org.springframework.boot

spring-boot-starter-jdbc

2、application.properties配置参数

spring.datasource.url=jdbc:mysql://master:3306/xjbank

spring.datasource.username=root

spring.datasource.password=root

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

spring.jpa.show-sql=true

3、注入

通过@autowired注入JdbcTemplate ,然后使用JdbcTemplate 内置的方法即可

@Autowired

private JdbcTemplate jdbcTemplate;

问题一:JdbcTemplate 不能new 而是需要@Autowired注入

•••展开全文