“@Autowired 的坑”的版本间的差异

来自姬鸿昌的知识库
跳到导航 跳到搜索
(建立内容为“1”的新页面)
 
第1行: 第1行:
1
+
用 @Autowired 注入 RedisTemplate<String, Object> 失败了,因为 @Autowired 根据类型(class、type)注入,且'''<big>包括泛型内容</big>'''
 +
 
 +
容器中存在 RedisTemplate 的对象 redisTemplate 和 StringRedisTemplate 的对象 stringRedisTemplate

2023年2月18日 (六) 03:54的版本

用 @Autowired 注入 RedisTemplate<String, Object> 失败了,因为 @Autowired 根据类型(class、type)注入,且包括泛型内容

容器中存在 RedisTemplate 的对象 redisTemplate 和 StringRedisTemplate 的对象 stringRedisTemplate