Spring boot DI不适用于scala类型类。投掷NoSuchBeanException
。我使用的是spring 4.3.13和spring boot version 1.5.9
这是伪代码片段供参考:
trait Repo[T]
@Repository
class RedisRepo @Autowired()(redis: RedisClient) extends Repo[Event]
class RedisDao @Autowired()(repo: Repo[Event])
我也尝试使用@Qualifier
作为RedisDao
类中的构造函数参数。但是,它也没有用。
感谢。