skip to main | skip to sidebar

Java Programs and Examples with Output

Pages

▼
 
  • RSS
  • Twitter
Thursday, September 20, 2012

Usage of Classpath Xml Application Context

Posted by Admin at 12:40 PM – 0 comments
 

Usage of ClasspathXmlApplicationContext


<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">

    <bean id="test" class="TestBean">
        <property name="name" value="${name}"/>
    </bean>

    <context:property-placeholder location="classpath:test.properties" />
    <context:component-scan base-package="*"/>

</beans>



import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Main {
  public static void main(String[] z) {
    ApplicationContext context = new ClassPathXmlApplicationContext("context.xml", Main.class);
    TestBean testBean = (TestBean)context.getBean("test");
    System.out.println(testBean);
  }

}
class TestBean {
  private String name;

  public String getName() {
      return name;
  }
  public void setName(String name) {
      this.name = name;
  }
  @Override
  public String toString() {
      final StringBuilder sb = new StringBuilder();
      sb.append("TestBean");
      sb.append("{name='").append(name).append('\'');
      sb.append('}');
      return sb.toString();
  }
}



Leave a Reply

Newer Post Older Post
Subscribe to: Post Comments ( Atom )
  • Popular
  • Recent
  • Archives
Powered by Blogger.
 
 
 
© 2011 Java Programs and Examples with Output | Designs by Web2feel & Fab Themes

Bloggerized by DheTemplate.com - Main Blogger