使用Spring从外部jar自动装配类

时间:2013-07-17 16:47:32

标签: spring maven classpath classloader

我正在尝试使用Spring构建一个独立的应用程序(不在应用程序服务器中运行),我遇到了以下问题:

我的独立应用程序(启用弹簧)取决于另一个项目(捆绑为jar),其中包含com.application.service中的许多服务(注释为@Service)。

外部项目中没有与spring相关的配置,独立应用程序上下文非常简单,只包含:

<context:component-scan base-package="com.application" />

以下是依赖于无法获取的服务的Class的示例:

@Service
public class StandaloneService {

    @Autowired
    private SomeService someService;

    // ...
}

StandaloneService包含在独立应用程序中,而SomeService位于外部jar中。

错误:

Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.application.SomeService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

以下是我创建ApplicationContext并尝试获取服务的方式:

public static void main(String[] args) {

    AbstractApplicationContext context = new ClassPathXmlApplicationContext(new String[] { "applicationContext.xml" });
    BeanFactory factory = (BeanFactory) context;

    StandaloneService standalone = factory.getBean(StandaloneService.class);
}

我如何构建独立应用程序:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>2.4</version>
    <configuration>
        <archive>
            <index>true</index>
            <manifest>
                <classpathPrefix>./lib/</classpathPrefix>
                <addClasspath>true</addClasspath>
                <mainClass>com.application.Main</mainClass>
            </manifest>
        </archive>
    </configuration>
</plugin>

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <executions>
        <execution>
            <id>copy-dependencies</id>
            <phase>package</phase>
            <goals>
                <goal>copy-dependencies</goal>
            </goals>
            <configuration>
                <outputDirectory>${project.build.directory}/lib</outputDirectory>
                <overWriteReleases>false</overWriteReleases>
                <overWriteSnapshots>false</overWriteSnapshots>
                <overWriteIfNewer>true</overWriteIfNewer>
            </configuration>
        </execution>
    </executions>
</plugin>

我是如何运行的(导致失败):

java -jar target/standalone.jar

奇怪的是,如果我以这种方式运行它就可以了:

mvn "-Dexec.args=-classpath %classpath com.application.Main" -Dexec.executable=/usr/lib/jvm/java-7-openjdk/bin/java -Dexec.classpathScope=runtime process-classes org.codehaus.mojo:exec-maven-plugin:1.2.1:exec

有没有人可以帮我弄清楚为什么Spring在第一种情况下无法看到我的外部服务?

修改

这是来自外部jar的pom.xml:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>2.4</version>
    <configuration>
        <archive>
            <manifest>
                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                <addClasspath>true</addClasspath>
            </manifest>
        </archive>
    </configuration>
</plugin>

2 个答案:

答案 0 :(得分:4)

三个月后,我现在得到了回应,感谢: Annotation scan not scanning external jars in classpath

如接受的答案中所述,使用 -jar 选项时,将忽略 -cp 选项。

以这种方式运行我的应用程序使其按预期工作!

java -cp target/lib/external.jar:target/standalone.jar package.Main

答案 1 :(得分:0)

您需要指定外部jar文件的位置作为java命令的一部分。它会是这样的

java -cp -jar target / standalone.jar