19 Haziran 2018 Salı

JSR 330 @Named Anotasyonu

Giriş
Şu satırı dahil ederiz.
import javax.inject.Named;
Açıklaması şöyle.
@Inject instead of Spring’s @Autowired to inject a bean.
@Named instead of Spring’s @Component to declare a bean.
Örnek
Elimizde şöyle bir kod olsun.
@Named
public class FatherServiceImpl implements FatherService {
  ...
}
Spring ile kullanmak için şöyle yaparız.
@Controller
public class FatherController {

  @Inject
  private FatherService fatherService;
  ...
}

Hiç yorum yok:

Yorum Gönder