类org.springframework.context.support.ClassPathXmlApplicationContext源码实例Demo

下面列出了怎么用org.springframework.context.support.ClassPathXmlApplicationContext的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: WeBASE-Front   文件: TestBase.java
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  // 获取spring配置文件,生成上下文
  context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
  //   ((ClassPathXmlApplicationContext) context).start();

  Service service = context.getBean(Service.class);
  service.run();

  System.out.println("start...");
  System.out.println("===================================================================");

  ChannelEthereumService channelEthereumService = new ChannelEthereumService();
  channelEthereumService.setChannelService(service);
  channelEthereumService.setTimeout(10000);
  web3j = Web3j.build(channelEthereumService, service.getGroupId());
  // EthBlockNumber ethBlockNumber = web3.ethBlockNumber().send();

}
 
源代码2 项目: scada   文件: SessionFactoryTest.java
@Test
public void testUser(){
	ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
	UserService userService = (UserService) context.getBean("userService");
	User user = new User();
	user.setUsername("menghan");
	user.setLoginName("meng");
	user.setLoginPwd("han");
	user.setAddress("ƽ��");
	user.setBirthday("");
	user.setContactTel("15001185667");
	user.setSex("��");
	user.setIsDuty("��");
	user.setEmail("[email protected]");
	user.setRemark("��");
	user.setRightsId(5);
	user.setOnDutyDate(new Date());
	userService.save(user);
}
 
源代码3 项目: dubbox   文件: ConfigTest.java
@Test
public void testSystemPropertyOverrideMultiProtocol() throws Exception {
    System.setProperty("dubbo.protocol.dubbo.port", "20814");
    System.setProperty("dubbo.protocol.rmi.port", "10914");
    ClassPathXmlApplicationContext providerContext = new ClassPathXmlApplicationContext(ConfigTest.class.getPackage().getName().replace('.', '/') + "/override-multi-protocol.xml");
    providerContext.start();
    try {
        ProtocolConfig dubbo = (ProtocolConfig) providerContext.getBean("dubbo");
        assertEquals(20814, dubbo.getPort().intValue());
        ProtocolConfig rmi = (ProtocolConfig) providerContext.getBean("rmi");
        assertEquals(10914, rmi.getPort().intValue());
    } finally {
        System.setProperty("dubbo.protocol.dubbo.port", "");
        System.setProperty("dubbo.protocol.rmi.port", "");
        providerContext.stop();
        providerContext.close();
    }
}
 
源代码4 项目: dubbox   文件: ConfigTest.java
@Test
public void test_returnSerializationFail() throws Exception {
    ClassPathXmlApplicationContext providerContext = new ClassPathXmlApplicationContext(ConfigTest.class.getPackage().getName().replace('.', '/') + "/demo-provider-UnserializableBox.xml");
    providerContext.start();
    try {
        ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext(ConfigTest.class.getPackage().getName().replace('.', '/') + "/init-reference.xml");
        ctx.start();
        try {
            DemoService demoService = (DemoService)ctx.getBean("demoService");
            try {
                demoService.getBox();
                fail();
            } catch (RpcException expected) {
                assertThat(expected.getMessage(), containsString("must implement java.io.Serializable"));
            }
        } finally {
            ctx.stop();
            ctx.close();
        }
    } finally {
        providerContext.stop();
        providerContext.close();
    }
}
 
@Test
public void testAccessThrowable() throws Exception {
	ClassPathXmlApplicationContext ctx =
		new ClassPathXmlApplicationContext(getClass().getSimpleName() + "-context.xml", getClass());

	ITestBean bean = (ITestBean) ctx.getBean("testBean");
	ExceptionHandlingAspect aspect = (ExceptionHandlingAspect) ctx.getBean("aspect");

	assertTrue(AopUtils.isAopProxy(bean));
	try {
		bean.unreliableFileOperation();
	}
	catch (IOException e) {
		//
	}

	assertEquals(1, aspect.handled);
	assertNotNull(aspect.lastException);
}
 
@Test
public void nonStaticPrototypeScript() {
	ApplicationContext ctx = new ClassPathXmlApplicationContext("bshRefreshableContext.xml", getClass());
	ConfigurableMessenger messenger = (ConfigurableMessenger) ctx.getBean("messengerPrototype");
	ConfigurableMessenger messenger2 = (ConfigurableMessenger) ctx.getBean("messengerPrototype");

	assertTrue("Should be a proxy for refreshable scripts", AopUtils.isAopProxy(messenger));
	assertTrue("Should be an instance of Refreshable", messenger instanceof Refreshable);

	assertEquals("Hello World!", messenger.getMessage());
	assertEquals("Hello World!", messenger2.getMessage());
	messenger.setMessage("Bye World!");
	messenger2.setMessage("Byebye World!");
	assertEquals("Bye World!", messenger.getMessage());
	assertEquals("Byebye World!", messenger2.getMessage());

	Refreshable refreshable = (Refreshable) messenger;
	refreshable.refresh();

	assertEquals("Hello World!", messenger.getMessage());
	assertEquals("Byebye World!", messenger2.getMessage());
	assertEquals("Incorrect refresh count", 2, refreshable.getRefreshCount());
}
 
源代码7 项目: spring4-understanding   文件: SimpleConfigTests.java
@Test
public void testFooService() throws Exception {
	ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext(getConfigLocations(), getClass());

	FooService fooService = ctx.getBean("fooServiceImpl", FooService.class);
	ServiceInvocationCounter serviceInvocationCounter = ctx.getBean("serviceInvocationCounter", ServiceInvocationCounter.class);

	String value = fooService.foo(1);
	assertEquals("bar", value);

	Future<?> future = fooService.asyncFoo(1);
	assertTrue(future instanceof FutureTask);
	assertEquals("bar", future.get());

	assertEquals(2, serviceInvocationCounter.getCount());

	fooService.foo(1);
	assertEquals(3, serviceInvocationCounter.getCount());
}
 
源代码8 项目: spring-analysis-note   文件: QuartzSupportTests.java
@Test
public void schedulerAccessorBean() throws Exception {
	Assume.group(TestGroup.PERFORMANCE);
	ClassPathXmlApplicationContext ctx = context("schedulerAccessorBean.xml");
	Thread.sleep(3000);
	try {
		QuartzTestBean exportService = (QuartzTestBean) ctx.getBean("exportService");
		QuartzTestBean importService = (QuartzTestBean) ctx.getBean("importService");

		assertEquals("doImport called exportService", 0, exportService.getImportCount());
		assertEquals("doExport not called on exportService", 2, exportService.getExportCount());
		assertEquals("doImport not called on importService", 2, importService.getImportCount());
		assertEquals("doExport called on importService", 0, importService.getExportCount());
	}
	finally {
		ctx.close();
	}
}
 
@Test
public void testServerStartup() throws Exception {
    ctx = new ClassPathXmlApplicationContext("/applicationContext-testContextSource.xml");
    LdapTemplate ldapTemplate = ctx.getBean(LdapTemplate.class);
    assertThat(ldapTemplate).isNotNull();

    List<String> list = ldapTemplate.search(
            LdapQueryBuilder.query().where("objectclass").is("person"),
            new AttributesMapper<String>() {
                public String mapFromAttributes(Attributes attrs)
                        throws NamingException {
                    return (String) attrs.get("cn").get();
                }
            });
    assertThat(list.size()).isEqualTo(5);
}
 
源代码10 项目: dubbox   文件: AsyncConsumer.java
public static void main(String[] args) throws Exception {
    String config = AsyncConsumer.class.getPackage().getName().replace('.', '/') + "/async-consumer.xml";
    ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
    context.start();
    
    final AsyncService asyncService = (AsyncService)context.getBean("asyncService");
    
    Future<String> f = RpcContext.getContext().asyncCall(new Callable<String>() {
        public String call() throws Exception {
            return asyncService.sayHello("async call request");
        }
    });
    
    System.out.println("async call ret :" + f.get());
    
    RpcContext.getContext().asyncCall(new Runnable() {
        public void run() {
            asyncService.sayHello("oneway call request1");
            asyncService.sayHello("oneway call request2");
        }
    });
    
    System.in.read();
}
 
源代码11 项目: dubbo-samples   文件: Application.java
public static void main(String[] args) {
    ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring/dubbo-consumer.xml");
    context.start();

    UserService userService = context.getBean("userService", UserService.class);
    User user = userService.getUser(1L);
    System.out.println("result: " + user);

    DemoService demoService = context.getBean("demoService", DemoService.class);
    String hello = demoService.sayHello("world");
    System.out.println("result: " + hello);
}
 
@Test
public void givenXMLConfigFile_whenUsingSetterBasedBeanInjection_thenCorrectHelmName() {
    final ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beanInjection-setter.xml");

    final Ship shipSetterBean = (Ship) applicationContext.getBean("ship");
    Assert.assertEquals(HELM_NAME, shipSetterBean.getHelm().getBrandOfHelm());
}
 
@Test
public void testCustomScopeMetadataResolver() {
	ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
			"org/springframework/context/annotation/customScopeResolverTests.xml");
	BeanDefinition bd = context.getBeanFactory().getBeanDefinition("fooServiceImpl");
	assertEquals("myCustomScope", bd.getScope());
	assertFalse(bd.isSingleton());
}
 
@Override
@Test
public void sampleConfiguration() {
	ApplicationContext context = new ClassPathXmlApplicationContext(
			"annotation-driven-sample-config.xml", getClass());
	testSampleConfiguration(context);
}
 
源代码15 项目: dubbo-samples   文件: AttachmentConsumer.java
public static void main(String[] args) {
    ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring/attachment-consumer.xml");
    context.start();

    AttachmentService attachmentService = context.getBean("demoService", AttachmentService.class);
    RpcContext.getContext().setAttachment("index", "1");

    String hello = attachmentService.sayHello("world");
    System.out.println(hello);

    // attachment only affective once
    hello = attachmentService.sayHello("world");
    System.out.println(hello);
}
 
@Test
public void testPostProcessBeforeInitialization() throws Exception {
	ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext(
               "/conf/baseLdapPathPostProcessorTestContext.xml");
	DummyBaseLdapPathAware tested = ctx.getBean(DummyBaseLdapPathAware.class);

	DistinguishedName base = tested.getBase();
	assertThat(base).isNotNull();
	assertThat(base).isEqualTo(new DistinguishedName("dc=261consulting,dc=com"));

       DummyBaseLdapNameAware otherTested = ctx.getBean(DummyBaseLdapNameAware.class);
       assertThat(otherTested.getBaseLdapPath()).isEqualTo(LdapUtils.newLdapName("dc=261consulting,dc=com"));
   }
 
源代码17 项目: geekbang-lessons   文件: BeanAliasDemo.java
public static void main(String[] args) {
    // 配置 XML 配置文件
    // 启动 Spring 应用上下文
    BeanFactory beanFactory = new ClassPathXmlApplicationContext("classpath:/META-INF/bean-definitions-context.xml");
    // 通过别名 xiaomage-user 获取曾用名 user 的 bean
    User user = beanFactory.getBean("user", User.class);
    User xiaomageUser = beanFactory.getBean("xiaomage-user", User.class);
    System.out.println("xiaomage-user 是否与 user Bean 相同:" + (user == xiaomageUser));
}
 
@Override
@Test
public void defaultContainerFactory() {
	ApplicationContext context = new ClassPathXmlApplicationContext(
			"annotation-driven-default-container-factory.xml", getClass());
	testDefaultContainerFactoryConfiguration(context);
}
 
源代码19 项目: eagle   文件: SpringContainer.java
@Override
public void start() {
    String configPath = System.getProperty(SPRING_CONFIG);
    if (Strings.isNullOrEmpty(configPath)) {
        configPath = DEFAULT_SPRING_CONFIG;
    }
    context = new ClassPathXmlApplicationContext(configPath.split("[,\\s]+"));
    context.start();
}
 
源代码20 项目: dubbox   文件: ConfigTest.java
@SuppressWarnings("unchecked")
@Test
public void testSystemPropertyOverrideXmlDefault() throws Exception {
    System.setProperty("dubbo.application.name", "sysover");
    System.setProperty("dubbo.application.owner", "sysowner");
    System.setProperty("dubbo.registry.address", "N/A");
    System.setProperty("dubbo.protocol.name", "dubbo");
    System.setProperty("dubbo.protocol.port", "20819");
    ClassPathXmlApplicationContext providerContext = new ClassPathXmlApplicationContext(ConfigTest.class.getPackage().getName().replace('.', '/') + "/system-properties-override-default.xml");
    providerContext.start();
    try {
        ServiceConfig<DemoService> service = (ServiceConfig<DemoService>) providerContext.getBean("demoServiceConfig");
        assertEquals("sysover", service.getApplication().getName());
        assertEquals("sysowner", service.getApplication().getOwner());
        assertEquals("N/A", service.getRegistry().getAddress());
        assertEquals("dubbo", service.getProtocol().getName());
        assertEquals(20819, service.getProtocol().getPort().intValue());
    } finally {
        System.setProperty("dubbo.application.name", "");
        System.setProperty("dubbo.application.owner", "");
        System.setProperty("dubbo.registry.address", "");
        System.setProperty("dubbo.protocol.name", "");
        System.setProperty("dubbo.protocol.port", "");
        providerContext.stop();
        providerContext.close();
    }
}
 
源代码21 项目: dubbox   文件: ConfigTest.java
@Test
public void testSystemPropertyOverrideProtocol() throws Exception {
    System.setProperty("dubbo.protocol.port", "20812");
    ClassPathXmlApplicationContext providerContext = new ClassPathXmlApplicationContext(ConfigTest.class.getPackage().getName().replace('.', '/') + "/override-protocol.xml");
    providerContext.start();
    try {
        ProtocolConfig dubbo = (ProtocolConfig) providerContext.getBean("dubbo");
        assertEquals(20812, dubbo.getPort().intValue());
    } finally {
        System.setProperty("dubbo.protocol.port", "");
        providerContext.stop();
        providerContext.close();
    }
}
 
源代码22 项目: cxf   文件: JavaFirstPolicyServiceTest.java
@Test
public void testBindingClientCertAlternativePolicy() {
    System.setProperty("testutil.ports.JavaFirstPolicyServer.3", PORT3);

    ClassPathXmlApplicationContext clientContext = new ClassPathXmlApplicationContext(new String[] {
        "org/apache/cxf/systest/ws/policy/sslcertclient.xml"
    });

    BindingSimpleService simpleService = clientContext.getBean("BindingSimpleServiceClient",
                                                                     BindingSimpleService.class);

    try {
        simpleService.doStuff();
        fail("Expected exception as no credentials");
    } catch (SOAPFaultException e) {
        // expected
    }

    WSS4JOutInterceptor wssOut = addToClient(simpleService);

    wssOut.setProperties(getNoPasswordProperties("alice"));
    simpleService.doStuff();

    wssOut.setProperties(getPasswordProperties("alice", "password"));

    // this is successful because the alternative policy allows a password to be specified.
    simpleService.doStuff();

    clientContext.close();
}
 
源代码23 项目: java-technology-stack   文件: BenchmarkTests.java
private long testMix(String file, int howmany, String technology) {
	ClassPathXmlApplicationContext bf = new ClassPathXmlApplicationContext(file, CLASS);

	StopWatch sw = new StopWatch();
	sw.start(howmany + " repeated mixed invocations with " + technology);
	ITestBean adrian = (ITestBean) bf.getBean("adrian");

	assertTrue(AopUtils.isAopProxy(adrian));
	Advised a = (Advised) adrian;
	assertTrue(a.getAdvisors().length >= 3);

	for (int i = 0; i < howmany; i++) {
		// Hit all 3 joinpoints
		adrian.getAge();
		adrian.getName();
		adrian.setAge(i);

		// Invoke three non-advised methods
		adrian.getDoctor();
		adrian.getLawyer();
		adrian.getSpouse();
	}

	sw.stop();
	System.out.println(sw.prettyPrint());
	return sw.getLastTaskTimeMillis();
}
 
@Test
public void testResourceScriptFromTag() throws Exception {
	ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("groovy-with-xsd.xml", getClass());
	Messenger messenger = (Messenger) ctx.getBean("messenger");
	CallCounter countingAspect = (CallCounter) ctx.getBean("getMessageAspect");

	assertTrue(AopUtils.isAopProxy(messenger));
	assertFalse(messenger instanceof Refreshable);
	assertEquals(0, countingAspect.getCalls());
	assertEquals("Hello World!", messenger.getMessage());
	assertEquals(1, countingAspect.getCalls());

	ctx.close();
	assertEquals(-200, countingAspect.getCalls());
}
 
@Test
public void componentScanWithAutowiredQualifier() {
	ClassPathXmlApplicationContext context = loadContext("componentScanWithAutowiredQualifierTests.xml");
	AutowiredQualifierFooService fooService = (AutowiredQualifierFooService) context.getBean("fooService");
	assertTrue(fooService.isInitCalled());
	assertEquals("bar", fooService.foo(123));
	context.close();
}
 
源代码26 项目: dubbox   文件: ConfigTest.java
@Test
public void testSystemPropertyOverrideProtocol() throws Exception {
    System.setProperty("dubbo.protocol.port", "20812");
    ClassPathXmlApplicationContext providerContext = new ClassPathXmlApplicationContext(ConfigTest.class.getPackage().getName().replace('.', '/') + "/override-protocol.xml");
    providerContext.start();
    try {
        ProtocolConfig dubbo = (ProtocolConfig) providerContext.getBean("dubbo");
        assertEquals(20812, dubbo.getPort().intValue());
    } finally {
        System.setProperty("dubbo.protocol.port", "");
        providerContext.stop();
        providerContext.close();
    }
}
 
@Test
public void testInvalidClassNameScopeMetadataResolver() {
	try {
		new ClassPathXmlApplicationContext(
				"org/springframework/context/annotation/invalidClassNameScopeResolverTests.xml");
		fail("should have failed: no such class");
	}
	catch (BeansException e) {
		// expected
	}
}
 
@Before
public void setup() {
	ClassPathXmlApplicationContext ctx =
			new ClassPathXmlApplicationContext(getClass().getSimpleName() + ".xml", getClass());
	nonSerializableBean = (NonSerializableFoo) ctx.getBean("testClassA");
	serializableBean = (SerializableFoo) ctx.getBean("testClassB");
	bar = (Bar) ctx.getBean("testClassC");
}
 
@Test
public void testStaticScriptWithInstance() throws Exception {
	ApplicationContext ctx = new ClassPathXmlApplicationContext("groovyContext.xml", getClass());
	assertTrue(Arrays.asList(ctx.getBeanNamesForType(Messenger.class)).contains("messengerInstance"));
	Messenger messenger = (Messenger) ctx.getBean("messengerInstance");

	assertFalse("Shouldn't get proxy when refresh is disabled", AopUtils.isAopProxy(messenger));
	assertFalse("Scripted object should not be instance of Refreshable", messenger instanceof Refreshable);

	String desiredMessage = "Hello World!";
	assertEquals("Message is incorrect", desiredMessage, messenger.getMessage());
	assertTrue(ctx.getBeansOfType(Messenger.class).values().contains(messenger));
}
 
源代码30 项目: EasyHousing   文件: TestAdminDao.java
@Test
public void Test3(){
	ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");//��ʼ������
	AdministratorDao administratorDao = (AdministratorDao) ac.getBean("administratorDao");
	Administrator u = new Administrator();
	u.setAdministratorDepartment("��̨");
	u.setAdministratorName("fly");
	u.setAdministratorPassword("1996511");
	u.setAdministratorSex("��");
	u.setAdministratorId(0);
	administratorDao.updateAdministrator(u);
	System.out.println("-------");
}
 
 同包方法