我使用maven程序集插件创建了一个可运行的jar:
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.loaders.FundLoader</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
我将一些Spring依赖项打包到jar中。 当我使用intellIj运行程序时,程序运行完全正常。 但是当我从命令行运行程序时使用:java -jar myjar.jar 我得到以下例外:
线程“main”中的异常org.springframework.beans.factory.xml.XmlBeanDefiniti onStoreException:来自类路径资源[spring / loader-context.xml]的XML文档中的第6行无效;嵌套异常是org.xml.sax.SAXParseExceptio N; lineNumber:6; columnNumber:120; cvc-elt.1:找不到e的声明 lement'bean'。
附上我的配置文件:loader-context.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:annotation-config />
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:hibernate.properties</value>
</list>
</property>
<property name="ignoreResourceNotFound" value="false"/>
</bean>
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${hibernate.driver.class.name}" />
<property name="url" value="${hibernate.jdbc.url}" />
<property name="username" value="${hibernate.username}" />
<property name="password" value="${hibernate.password}" />
<property name="defaultAutoCommit" value="false" />
</bean>
</beans>
然后是我的pom.xml的内容:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.operations</groupId>
<artifactId>parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
</parent>
<artifactId>loader</artifactId>
<name>[FOR] loader</name>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.loaders.FundLoader</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.sf.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.4.0</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
<scope>runtime</scope>
</dependency>
</dependencies>
有人可以帮帮我吗?
谢谢
答案 0 :(得分:2)
对于每个Spring模块,Spring应用程序不能简单地打包为具有maven-assembly-plugin
的胖JAR,JAR的模式位于始终位于同一位置(META-INF/spring.schemas
)的文件中。
当您在一个最终JAR中展平所有依赖项时,您显然只会在生成的JAR中包含这些spring.schemas
个文件中的一个,因此就是您的问题。
我建议使用Spring Boot来开发你的应用程序,因为它包含一个可以很好地处理Spring JAR的插件。
或者您也可以使用onejar-maven-plugin,它还会以避免出现此问题的特定方式打包胖JAR。
还存在其他解决方案,例如maven-shade-plugin and its AppendingTransformer
您甚至可以自己提供有问题的文件的合并版本,作为项目资源,然后将原件排除在组装之外。