2012-11-02 3 views
0

코드가 실행되는 환경을 기반으로 직접 업로드 된 변수를 가져 오려고합니다. 나는 몇 가지 코드를 작성하고 문제에 부딪쳤다. 내가 잘못하고있는 것을 지적 해 주시겠습니까?프로필이 봄 문제

WebAppInitializer.java

public class WebAppInitializer implements WebApplicationInitializer { 
@Override 
public void onStartup(ServletContext sc) throws ServletException { 
// Create the 'root' Spring application context 
AnnotationConfigWebApplicationContext root = new AnnotationConfigWebApplicationContext(); 
root.scan("com.configs"); 
root.getEnvironment().setActiveProfiles("dev"); 
root.refresh(); 


// Manages the lifecycle of the root application context 
sc.addListener(new ContextLoaderListener(root)); 

// Handles requests into the application 
ServletRegistration.Dynamic appServlet = sc.addServlet("appServlet", 
           new DispatcherServlet(new GenericWebApplicationContext())); 
appServlet.setLoadOnStartup(1); 
Set<String> mappingConflicts = appServlet.addMapping("/"); 

if (!mappingConflicts.isEmpty()) { 
    throw new IllegalStateException(
        "'appServlet' could not be mapped to '/' due " 
        + "to an existing mapping. This is a known issue under Tomcat versions " 
        + "<= 7.0.14; see https://issues.apache.org/bugzilla/show_bug.cgi?id=51278"); 
} 

} 

}

DynamicConfig.java

@Configuration 
@Profile("dev") 
@PropertySource("classpath:/devel.properties") 

public class DynamicConfig { 

@Autowired 
Environment env; 

@Bean 
public TestClass testClass(){ 
    TestClass testClass = new TestClass(); 
    testClass.setEnvironment(env.getProperty("environment")); 
    return testClass;  
} 

}

의 TestClass은 환경에 따라 구성에서 올 인스턴스 변수와 간단한 클래스 .

테스트 케이스 : 패키지 com.tester; 내가 벌금을 실행하는 DynamicConfig.java 코드에서 줄 @profile ("DEV")를 제거하면

import org.junit.Test; 
import org.springframework.context.ApplicationContext; 
import org.springframework.context.annotation.AnnotationConfigApplicationContext; 

import com.configs.DynamicConfig; 
    import com.configs.EnvironmentDetector; 
import com.tester.TestClass; 

public class TestClassTest { 
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(DynamicConfig.class); 

@Test 
public void test(){ 
    ApplicationContext context = new AnnotationConfigApplicationContext(DynamicConfig.class); 
    context.getEnvironment().setActiveProfiles("dev"); 
    context.scan("com.configs"); 
    TestClass test = context.getBean(TestClass.class); 
    System.out.println(test.getEnvironment()); 
} 

}

는 지금은 오류

Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.282 sec <<< FAILURE! 
    test(com.tester.TestClassTest) Time elapsed: 0.279 sec <<< ERROR! 
org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [com.tester.TestClass] is defined: expected single bean but found 0: 
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:280) 
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1106) 
at com.tester.TestClassTest.test(TestClassTest.java:16) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 
at java.lang.reflect.Method.invoke(Method.java:597) 
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45) 
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) 
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42) 
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) 
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263) 
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68) 
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47) 
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231) 
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60) 
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229) 
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50) 
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222) 
at org.junit.runners.ParentRunner.run(ParentRunner.java:300) 
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) 
at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:146) 
at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 
at java.lang.reflect.Method.invoke(Method.java:597) 
at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) 
at $Proxy0.invoke(Unknown Source) 
at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:145) 
at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:87) 
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) 

아래 얻고있다. 그러나 나는 그것을 원한다. prod를위한 비슷한 클래스를 만들고 싶습니다.

프로파일을 활성화

감사

답변

2

업데이트를 테스트 클래스를 도와주세요. 현재 테스트 컨텍스트에서 실행되지 않는 WebApplicationInitializer에 속성을 추가하여 활성화하고 있습니다.

@RunWith(SpringJUnit4ClassRunner.class) 
@ActiveProfiles({"dev"}) 
@ContextConfiguration(classes = {DynamicConfig.class}) 
public class TestClassTest { 

@Autowired 
TestClass testClass; 

@Test 
public void test(){ 
     System.out.println(testClass.getEnvironment()); 
} 
+0

안녕 ... 당신의 접근 방식이 일 덕분에 많은 :

한 가지 방법은, 그러나 그것은 유일한 방법은 아니다, 그것은 다음과 같은 일을하고있을 것이다 활성화합니다. 다른 접근법을 고칠 수 있습니까? 내가 테스트 케이스를 업데이트했습니다 ... 프로파일을 활성화 한 후에도 업데이트 된 테스트 케이스가 작동하지 않습니다. 이 링크를 따라 가려고합니다 : http://blog.springsource.com/2011/02/14/spring-3-1-m1-introducing-profile/ – javaMan