8

Spring 3.1.1.RELEASE 与 Apache Maven 3.0.3 和 Maven Shade 插件 1.6。

使用 mvn shade 插件将工件打包到 uber-jar 中,包括它的依赖项:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-shade-plugin</artifactId>
    <version>1.6</version>
    <executions>
        <execution>
        <phase>package</phase>
        <goals>
            <goal>shade</goal>
        </goals>
        <configuration>
            <transformers>
                <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                    <mainClass>com.MyApplication</mainClass>
                </transformer>
            </transformers>
        </configuration>
    </execution>
</executions>

似乎打包得很好,但在执行时抱怨 Spring NamespaceHandler 问题:

Caused by: org.springframework.beans.factory.parsing.BeanDefinitionParsingException:
Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/util]
Offending resource: class path resource [spring/test-context.xml]

这适用于 util 和 p-命名空间,但不限于这些:

xmlns:util="http://www.springframework.org/schema/util"
xmlns:p="http://www.springframework.org/schema/p"

如果我以手写方式重写属性或列表(util),问题就会消失。

4

1 回答 1

22

尝试将AppendingTransformer添加到您的配置中。该示例特别提到这对 Spring 处理程序很有用。

于 2012-05-14T18:00:22.440 回答