caffeine
12/23/2017, 11:47 AM@Autowired
@Component
class QuoteDAO(val dataSource: DataSource) {
}
======
отбой!
нашел ответ:
@Component
class QuoteDAO @Autowired constructor(val dataSource: DataSource) {
}
a_wer1986
12/25/2017, 7:28 AMqwert_ukg
12/29/2017, 2:57 PM