Spring boot DI不适用于scala类型类

时间:2018-04-25 07:34:51

标签: spring scala spring-boot

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类中的构造函数参数。但是,它也没有用。

感谢。

0 个答案:

没有答案