Usage of ClasspathXmlApplicationContext
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <? xml version = "1.0" encoding = "UTF-8" ?> 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 > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 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(); } } |