Package org.springframework.core.env

Examples of org.springframework.core.env.AbstractEnvironment.addActiveProfile()


              "Invalid profile [" + profile + "]: must not contain dash character");
        }
      }
    };

    env.addActiveProfile("validProfile"); // succeeds

    try {
      env.addActiveProfile("invalid-profile");
      fail("expected validation exception");
    }
View Full Code Here


    };

    env.addActiveProfile("validProfile"); // succeeds

    try {
      env.addActiveProfile("invalid-profile");
      fail("expected validation exception");
    }
    catch (IllegalArgumentException ex) {
      assertThat(ex.getMessage(),
          equalTo("Invalid profile [invalid-profile]: must not contain dash character"));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.