18 Nisan 2018 Çarşamba

SpringContext ClassPathXmlApplicationContext Sınıfı

Giriş
Şu satırı dahil ederiz.
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
Açıklaması şöyle.
ClassPathXmlApplicationContext will read files from your classpath. They must be in classes folder of your web application or in a jar in your libfolder.
xml dosyasının src/main/resources dizininde olması gerekir.

Örnek
Şöyle yaparız.
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(
  "classpath*:beans.xml");
Örnek
Şöyle yaparız.
ApplicationContext context = new ClassPathXmlApplicationContext("Spring.xml");

Hiç yorum yok:

Yorum Gönder