我正在尝试创建和扩展org.springframework.jdbc.core.JdbcTemplate类;
public class CustomJdbcTemplate extends JdbcTemplate
我正在创建这个customJdbcTemplate,以便在执行查询时执行一些监视功能。
现在我收到了编译错误
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in com.myservice.repository.DataRepository required a bean of type 'com.myservice.repository.CustomJdbcTemplate' that could not be found.
Action:
Consider defining a bean of type 'com.myservice.repository.CustomJdbcTemplate' in your configuration.
我在这里失踪的是什么?我应该在CustomJdbcTemplate类中添加任何注释吗?