1

我有一个Maven Web 项目,我想在其中执行一些 JUnit 集成测试。为此,我想加载applicationContext.xml文件以获取 Spring 注入的 bean。我的应用程序上下文文件也位于 中src/main/resources/app_context,但是在执行 Maven 的生命周期时,它会将它们定位到WEB-INF/classes/application_context中,因此我可以通过类路径访问它们。

<resource>
    <directory>src/main/resources/appcontext</directory>
    <targetPath>${basedir}/src/main/webapp/WEB-INF/classes/application_context</targetPath>
    <filtering>true</filtering>
    <includes>
        <include>*/**</include>
    </includes>
</resource>

我试图以某种方式访问​​该上下文,但没有成功。我也以这种方式将它们放入 Maven 的目标测试目录中:

<testResources>
    <testResource>
        <directory>
                src/main/resources/appcontext
            </directory>
        <targetPath>${basedir}/src/main/webapp/WEB-INF/classes/application_context</targetPath>
    </testResource>
</testResources>

这是我的一部分测试:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:**/applicationContext.xml" })
@Transactional
public class SystemTest {

    @Autowired
    ApplicationContext applicationContext;

    @Test
    public void initializeSystemTest() {
            //Test code

这就是我如何从我的主要文件访问其余应用程序上下文文件的方式:

<?xml version="1.0" encoding="ISO-8859-15"?>

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:cxf="http://cxf.apache.org/core" xmlns:jaxws="http://cxf.apache.org/jaxws"
xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">

    <import resource="classpath:application_context/ApplicationContext*.xml" />
    <context:annotation-config />
    <!--========== Spring Data Source ========== -->
    <!--Bean stuff-->

基本上,我只想存储每个 applicationContext 文件的副本,src/main/resources并让 Maven 复制它们以用于测试和执行范围。但是我的测试类无法找到并加载它们。我必须做什么?

4

1 回答 1

2

假设你applicationContext.xml是 in ,默认情况下src/main/resources/appcontextMaven 会重新分配它。WEB-INF/classes/appcontext不必为该资源分配新路径。

您应该能够在测试中找到上下文文件:

@ContextConfiguration(locations={"/appcontext/applicationContext.xml"})

您不应该为此需要额外的 Maven 设置。

于 2013-01-17T09:36:47.387 回答