怪しいUnbale to locate Spring Namespace Handler for XML schema namespace


博主のあの苦しみの強迫する真理を探す過程は言わないで、ここで問題と最終の解決方法を話して、ここで記録してみます.
    ブロガーは量産プログラムを開発した後、mavenで包装し、次のように配置しています.
<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<manifest>
							<addClasspath>true</addClasspath>
							<mainClass>com.xxx.schedule.xxx.JobMain</mainClass>
							<useUniqueVersions>false</useUniqueVersions>
							<classpathPrefix>lib/</classpathPrefix>
						</manifest>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-dependency-plugin</artifactId>
				<executions>
					<execution>
						<id>copy</id>
						<phase>package</phase>
						<goals>
							<goal>copy-dependencies</goal>
						</goals>
						<configuration>
							<outputDirectory>${project.build.directory}/lib
							</outputDirectory>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
java-jarを実行します.  xxxxx.jar投げます 
Caused by:org.spring frame ework.beans.factory.parsing.BenDefinitionParsonExcept
ion:Configration proble:Unbale to locate Spring Namespace Handler for XML sch
ema namespace[http://www.springframework.org/schema/context」
長い間苦労した後、ブロガーはjarカバンのMETA-INNFディレクトリの下にINDEX.LISTファイルがあることを発見しました.
中にはすべてのjarファイルの内容が含まれています.内容は以下の通りです.
lib/spring-batch-core-2.2.7.RELEASE.jar
META-INF
META-INF/maven
META-INF/maven/org.springframework.batch
META-INF/maven/org.springframework.batch/spring-batch-core
org
org/springframework
org/springframework/batch
org/springframework/batch/core
org/springframework/batch/core/annotation
org/springframework/batch/core/configuration
org/springframework/batch/core/configuration/annotation
org/springframework/batch/core/configuration/support
org/springframework/batch/core/configuration/xml
org/springframework/batch/core/converter
org/springframework/batch/core/explore
org/springframework/batch/core/explore/support
org/springframework/batch/core/job
org/springframework/batch/core/job/builder
org/springframework/batch/core/job/flow
org/springframework/batch/core/job/flow/support
org/springframework/batch/core/job/flow/support/state
org/springframework/batch/core/launch
org/springframework/batch/core/launch/support
org/springframework/batch/core/listener
org/springframework/batch/core/migration
org/springframework/batch/core/partition
org/springframework/batch/core/partition/support
org/springframework/batch/core/repository
org/springframework/batch/core/repository/dao
org/springframework/batch/core/repository/support
org/springframework/batch/core/resource
org/springframework/batch/core/scope
org/springframework/batch/core/scope/context
org/springframework/batch/core/step
org/springframework/batch/core/step/builder
org/springframework/batch/core/step/factory
org/springframework/batch/core/step/item
org/springframework/batch/core/step/job
org/springframework/batch/core/step/skip
org/springframework/batch/core/step/tasklet

lib/spring-batch-infrastructure-2.2.7.RELEASE.jar
META-INF/maven
META-INF/maven/org.springframework.batch
META-INF/maven/org.springframework.batch/spring-batch-infrastructure
org
org/springframework
org/springframework/batch
org/springframework/batch/item
org/springframework/batch/item/adapter
org/springframework/batch/item/amqp
org/springframework/batch/item/data
org/springframework/batch/item/database
org/springframework/batch/item/database/orm
org/springframework/batch/item/database/support
org/springframework/batch/item/file
org/springframework/batch/item/file/mapping
org/springframework/batch/item/file/separator
org/springframework/batch/item/file/transform
org/springframework/batch/item/jms
org/springframework/batch/item/mail
org/springframework/batch/item/mail/javamail
org/springframework/batch/item/support
org/springframework/batch/item/util
org/springframework/batch/item/validator
読んでいます
http://www.ibm.com/developerworks/cn/java/j-jar/,このファイルのためにlibをロードできなくなりました.思い切って削除しました.
ここには二つの疑問があります.まだ分かりません.時間があったら詳しく見てください.
1.このファイルを梱包する時はどうやって作成しますか?
2.このファイルはjvmですか?  classloadは影響がありますか?
もしある大神さんがうっかり見たら、弟にも説明してください.ありがとうございます.