29.2. 使用JdbcTemplate
Spring的JdbcTemplate
和NamedParameterJdbcTemplate
类会被自动配置,你可以将它们直接@Autowire
到自己的beans:
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.stereotype.Component; @Component public class MyBean { private final JdbcTemplate jdbcTemplate; @Autowired public MyBean(JdbcTemplate jdbcTemplate) { this.jdbcTemplate = jdbcTemplate; } // ... }
本文来自:Spring Boot的特性:使用JdbcTemplate
]