8

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

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

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

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

这是一个依赖于无法获取的服务的类的示例:

@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>
4

2 回答 2

4

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

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

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

java -cp target/lib/external.jar:target/standalone.jar package.Main
于 2013-10-27T20:49:41.660 回答
0

您需要在 java 命令中指定外部 jar 文件的位置。会是这样的

java -cp -jar 目标/standalone.jar

于 2013-07-18T12:34:42.670 回答