Example usage for org.springframework.beans.factory.config PreferencesPlaceholderConfigurer PreferencesPlaceholderConfigurer

List of usage examples for org.springframework.beans.factory.config PreferencesPlaceholderConfigurer PreferencesPlaceholderConfigurer

Introduction

In this page you can find the example usage for org.springframework.beans.factory.config PreferencesPlaceholderConfigurer PreferencesPlaceholderConfigurer.

Prototype

PreferencesPlaceholderConfigurer

Source Link

Usage

From source file:ome.client.utests.Preferences3Test.java

@Test(groups = "ticket:62")
@ExpectedExceptions(BeanInitializationException.class)
public void test_missingLoadProperties() {
    StaticApplicationContext ac = new StaticApplicationContext();
    PreferencesPlaceholderConfigurer ppc = new PreferencesPlaceholderConfigurer();
    ppc.setLocation(new ClassPathResource("DOES--NOT--EXIST"));

    ac.addBeanFactoryPostProcessor(ppc);
    ac.refresh();//from w ww . j a v  a  2  s. c  om
}

From source file:ome.client.utests.Preferences3Test.java

@Test(groups = "ticket:62")
public void test_missingLoadPropertiesIgnore() {
    StaticApplicationContext ac = new StaticApplicationContext();
    PreferencesPlaceholderConfigurer ppc = new PreferencesPlaceholderConfigurer();
    ppc.setLocation(new ClassPathResource("DOES--NOT--EXIST"));
    ppc.setIgnoreResourceNotFound(true);

    ac.addBeanFactoryPostProcessor(ppc);
    ac.refresh();/* w  w  w  .j  a va 2 s  .co  m*/

}