We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
https://docs.spring.io/spring-data/redis/reference/redis/hash-mappers.html
@Autowired HashOperations<String, byte[], byte[]> hashOperations;
this won't work. There are some discussion about it.
it turns out this works.
@Resource(name = "redisTemplate") HashOperations<String, byte[], byte[]> hashOperations;
In the mean time, @Autowired @Qualifier("redisTemplate") fails. I don't konw why.
@Autowired @Qualifier("redisTemplate")
The text was updated successfully, but these errors were encountered:
Fix documentation to use resource injection for RedisTemplate operati…
9bdbe12
…ons. Closes #2828
Polishing.
1c74527
Add missing property editors to inject requested operations. See #2828
86b97e3
b6e4951
No branches or pull requests
https://docs.spring.io/spring-data/redis/reference/redis/hash-mappers.html
this won't work. There are some discussion about it.
it turns out this works.
In the mean time,
@Autowired @Qualifier("redisTemplate")
fails. I don't konw why.The text was updated successfully, but these errors were encountered: