6

我们在服务层和视图层上下文配置之间有一个清晰的抽象,我们正在加载它们,如下所示。

Root application context:

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath*:META-INF/spring/applicationContext*.xml</param-value>
</context-param>

Web application context:

<servlet>
    <servlet-name>lovemytasks</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/mmapp-servlet.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

现在我们尝试引入 SPRING MVC TEST FRAMEWORK 来测试我们的应用程序。

为此,我需要设置与我的真实 Web 应用程序相同的环境。

我怎样才能做到这一点 ?

我在测试中尝试了以下配置来加载两个上下文。

@ContextConfiguration(locations = { "classpath*:META-INF/spring/applicationContext*.xml",
    "file:src/main/webapp/WEB-INF/spring/mmapp-servlet.xml" })

但它错误地说

Caused by: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Duplicate <global-method-security> detected. 

我们已经在根应用程序上下文和 Web 应用程序上下文中定义了全局安全性。

注意:当我运行我的网络应用程序时,上述问题不会出现。它仅在我运行 Spring MVc 测试时发生

我尝试删除我的全局安全和一个地方,然后在运行我的测试时遇到转换服务错误。这警告我,我没有像真正的 Spring 应用程序那样加载上下文。

现在,我想设置我的 Spring MVC 测试环境以使用或以与我的 Spring Web 应用程序环境相同的方式工作。谁能建议我如何实现它?

4

2 回答 2

8

使用@ContextHierarchy注释。它的 javadoc 很好地描述了它。在你的情况下,你会使用

@WebAppConfiguration
@ContextHierarchy({
    @ContextConfiguration(locations = { "classpath*:/META-INF/spring/applicationContext-*.xml" }),
    @ContextConfiguration(locations = { "file:src/main/webapp/WEB-INF/spring/mmapp-servlet.xml" })
})
于 2013-04-16T02:26:02.127 回答
1

不要把你的 appContext 放在 meta-inf 中。

“正常”的方式是在你的 web-inf 中有一个 spring-servlet.xml

<context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>WEB-INF/spring-servlet.xml</param-value>
    </context-param>

然后在 xml 文件中导入不同的文件:

<import resource="classpath:beans.xml"/>

我为我的测试创建了一个单独的 appContent :

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations ="classpath:applicationContext-test.xml")
@Transactional
public class MyTest {

您的 bean 必须在某处被加载两次,您是否两次导入 bean,在 xml 中定义它们并进行注释?

于 2013-04-11T08:51:03.927 回答