@EnableConfigurationProperties(RedisProperties.class)
@Configuration
public class RedisConfiguration {
/**
* 提供jedis的bean
*/
@Bean
public Jedis jedis(RedisProperties redisProperties){
return new Jedis(redisProperties.getHost(),redisProperties.getPort());
}
}
这是使用 RedisProperties 这个bean,我没有注入却能使用是怎么回事?注释了@Bean就没有被自动注入了,与@Bean有关吗?