Giriş
Bir bean bu arayüzü gerçekleştirir.
Şöyle yaparız.
Bir bean bu arayüzü gerçekleştirir.
@Controller
public class NodeObserver implements ApplicationEventPublisherAware
{
.....
}
Bu arayüz yerine @Autowired kullanmak daha iyi. Şöyle yaparız.public SomeClass implementens ApplicationEventPublisherAware {
@Autowired
private ApplicationEventPublisher publisher;
}
setApplicationEventPusblisher metoduŞöyle yaparız.
public SomeClass implementens ApplicationEventPublisherAware {
private ApplicationEventPublisher publisher;
public void setApplicationEventPublisher(ApplicationEventPublisher
applicationEventPublisher) {
this.publisher= applicationEventPublisher;
}
}
Hiç yorum yok:
Yorum Gönder