(root)/ – Rev 36297
Rev 36296 |
Last modification |
Compare with Previous |
View Log
| RSS feed
Last modification
- Rev 36297 2026-04-17 15:36:23
- Author: amit
- Log message:
- Fix MonitorController autowiring after @Cacheable proxy
UserWalletRepositoryImpl now has @Cacheable (r36296), which makes Spring
wrap it in a JDK interface proxy. MonitorController autowired the concrete
class, breaking startup with BeanNotOfRequiredTypeException. Switch to the
interface UserWalletRepository, matching every other repository injection
in the file.