Spring 3.1.1.RELEASE with ApacheMaven3.0.3およびMavenShadeプラグイン1.6。
mvnシェードプラグインを使用して、依存関係を含むアーティファクトを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>
パッケージ化は問題ないようですが、実行時にSpringNamespaceHandlerの問題について不平を言います。
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-namespacesの両方に適用されますが、これらに限定されないことを期待してください。
xmlns:util="http://www.springframework.org/schema/util"
xmlns:p="http://www.springframework.org/schema/p"
プロパティまたはリスト(util)を手書きで書き直すと、問題は解消されます。