1

Ich möchte meine Controller-Ebene testen, also habe ich @WebMvcTest-Annotation verwendet, weil ich nicht den ganzen Server starten möchte. Aber als ich den Controller-Test ausgeführt habe, ist der Test immer fehlgeschlagen. Mein ControllerTest Code wie folgt:Wie kann ich die angegebene XML-Konfiguration ausschließen, wenn @WebMvcTest in SpringBoot verwendet wird?

@RunWith(SpringRunner.class) 
@WebMvcTest(value = ServiceController.class) 
public class ServiceControllerTest { 

private MockMvc mockMvc; 

@Autowired 
private WebApplicationContext webApplicationContext; 

@MockBean 
private CloudServiceFacade cloudServiceFacade; 

@Before 
public void setUp() throws Exception { 
    this.mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build(); 
} 

@Test 
public void checkRoleExist() throws Exception { 
} 
} 

Ein Stück Fehlermeldungen wie:

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'redisPoolConfig' defined in class path resource [tools.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type 'java.lang.String' to required type 'int' for property 'maxTotal'; nested exception is java.lang.NumberFormatException: For input string: "${redis.maxTotal}" 
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:563) 
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) 
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) 
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) 
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) 
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) 
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:759) 
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:866) 
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:542) 
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:761) 
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:371) 
at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) 
at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:111) 
at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContextInternal(DefaultCacheAwareContextLoaderDelegate.java:98) 
at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:116) 
... 28 more 
Caused by: org.springframework.beans.TypeMismatchException: Failed to convert property value of type 'java.lang.String' to required type 'int' for property 'maxTotal'; nested exception is java.lang.NumberFormatException: For input string: "${redis.maxTotal}" 
at org.springframework.beans.AbstractNestablePropertyAccessor.convertIfNecessary(AbstractNestablePropertyAccessor.java:596) 
at org.springframework.beans.AbstractNestablePropertyAccessor.convertForProperty(AbstractNestablePropertyAccessor.java:603) 
at org.springframework.beans.BeanWrapperImpl.convertForProperty(BeanWrapperImpl.java:216) 
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.convertForProperty(AbstractAutowireCapableBeanFactory.java:1538) 
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1497) 
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1237) 
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:552) 
... 42 more 
Caused by: java.lang.NumberFormatException: For input string: "${redis.maxTotal}" 
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) 
at java.lang.Integer.parseInt(Integer.java:569) 
at java.lang.Integer.valueOf(Integer.java:766) 
at org.springframework.util.NumberUtils.parseNumber(NumberUtils.java:208) 
at org.springframework.beans.propertyeditors.CustomNumberEditor.setAsText(CustomNumberEditor.java:113) 
at org.springframework.beans.TypeConverterDelegate.doConvertTextValue(TypeConverterDelegate.java:468) 
at org.springframework.beans.TypeConverterDelegate.doConvertValue(TypeConverterDelegate.java:441) 
at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:199) 
at org.springframework.beans.AbstractNestablePropertyAccessor.convertIfNecessary(AbstractNestablePropertyAccessor.java:576) 
... 48 more 

ich die Fehlermeldung verstehen kann, weil in meiner Anwendung (ich benutze SpringBoot), habe ich eine Bootstrap-Klasse, die ist der Eingang der Anwendung. Die Bootstrap Klasse wie folgt:

@SpringBootApplication(scanBasePackages = {"com.netease.permission"}) 
@ImportResource("classpath:applicationContext.xml") 
public class Bootstrap { 
public static void main(String[] args) { 
    SpringApplication.run(Bootstrap.class); 
} 
} 

Es importieren Sie eine externe xml: applicationContext.xml und applicationContext.xml unter:

<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans  http://www.springframework.org/schema/beans/spring-beans.xsd"> 

<import resource="database.xml" /> 
<import resource="tools.xml" /> 
<import resource="dubbo-service.xml" /> 
<import resource="spring-mvc.xml" /> 

</beans> 

Das Problem ist, ich will nicht die ganze application importieren .xml, weil es die gesamte zusätzliche Ressourcenabhängigkeit definiert, wie zB mysql \ redisis \ zk, etc. aber nur spring-mvc.xml.Cause im Frühjahr-mvc.xml definiere ich die Abfangjäger. Ich möchte die Interzeptoren & Controller in meinem ServiceControllerTest testen.

Ich habe bereits hinzugefügt @TestConfiguration ("classpath: spring-mvc.xml") zeigen an, dass ich nur spring-mvc.xml-Konfiguration importieren möchte, aber es funktioniert nicht.

Hat jemand meine Situation, könnte jemand Körper helfen?

Antwort

0

Fügen Sie einfach eine leere Spring-Kontextdatei mit demselben Dateinamen in den Ordner src/test/resource ein. Dies sollte den ursprünglichen überschreiben.

Verwandte Themen