In an Interceptor class for automatically audit Hibernate CRUD operations, @Autowired annotation from Spring is not working.
I supose that it is due to, at configuration time, Spring doesn't have had time to configure autowiring stuff yet. In other classes everything is doing well. Is there a workaround or a "right-to-do" here? Thanks.
Class PersistenteConfig
//...
@Configuration
@EnableTransactionManagement
@PropertySource({"classpath:/foo/bar/persistence-mysql.properties"})
@ComponentScan({"foo.bar" })
//...
@Bean
@Autowired
public HibernateTransactionManager transactionManager(SessionFactory sessionFactory) {
HibernateTransactionManager txManager = new HibernateTransactionManager();
txManager.setSessionFactory(sessionFactory);
AuditLogInterceptorImpl interceptor = new AuditLogInterceptorImpl();
txManager.setEntityInterceptor(interceptor);
return txManager;
}
//...
Class AuditLogInterceptorImpl
//...
@Service
@Transactional
public class AuditLogInterceptorImpl extends EmptyInterceptor {
private static final long serialVersionUID = 1L;
@Autowired // <== NOT WORKING HERE... :o (object is null at runtime)
EventsService eventsService;
//...