自动装配一个Spring 3.1独立应用程序,返回“没有定义[x.x.x.x]类型的唯一bean”异常

时间:2012-10-06 20:40:02

标签: java eclipse spring java-ee applicationcontext

我正在编写一个独立的应用程序(不是基于Web的),它将使用以下命令从命令提示符运行:

java -jar myapplication.jar 

我在eclipse上开发了应用程序作为Maven项目,因此Eclipse检索所有依赖库。如果我右键单击主类并选择“运行方式”>“Java应用程序”,它可以正常工作。

现在我遇到的问题是我需要将应用程序部署为单个jar文件。为此,我使用Eclipse将应用程序导出为“Runnable Jar”(即通过“export command”)。这生成了jar文件。我查看了jar文件,所有类和依赖的jar文件都在jar文件中。 Spring应用程序上下文文件也位于顶级文件夹的jar文件中。 jar文件的“内部”如下所示:

- com
    - myapp
      - service
         - MyAppService.class
      - dao
         - MyAppDataDao.class   
      - MyMainClass.class


- META-INF
- org
- application-context-components.xml
- log4j.properties
- [several jar files for spring, log4j, velocity etc)

我尝试使用以下命令运行jar文件,它给了我这个错误:

Exception in thread "main" java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader.main(JarRsrcLoader.java:58)
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [com.myapp.MyMainClass] is defined: expected single bean but found 0:
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:257)
        at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1012)
        at com.myapp.MyMainClass.init(MyMainClass.java:44)
        at com.myapp.MyMainClass.main(MyMainClass.java:65)
        ... 5 more

com.myapp.MyMainClass文件位于jar文件中,名称正确。包中的类是自动装配的。我认为我必须错过注释中的某些内容或者应用程序上下文文件中的某些内容。类的结构和使用的注释如下所示:

MyMainClass

@Component
public class MyMainClass{

    @Autowired
    MyAppService myAppService;

    public static void main(String args[]){
        try{
            context = new     ClassPathXmlApplicationContext(properties.get("app.context"));

 MyMainClass mymainClass = context.getBean(MyMainClass.class);
 mymainClass.myAppService.getData()....
 ....
            }catch(Exception e){
                throw new CWAException(fname + ":" + e);
            }
        }
    }

app.context属性返回应用程序上下文文件的名称。

MyAppService

@Service
public class MyAppService{

    @Autowired
    MyAppDataDao myAppDataDao;

    ---
    ---
    ---
}

MyAppDataDao

@Repository("myAppDataDao;")
public class MyAppDataDao {

    getData(){
    }

    ---
    ---
    ---
}

应用程序上下文文件如下所示

<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"
    xmlns:p="http://www.springframework.org/schema/p"
    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-3.0.xsd">

    <!-- Auto scan the components -->
    <context:component-scan base-package="com.myapp" />

    <bean id="velocityEngine" class="org.springframework.ui.velocity.VelocityEngineFactoryBean" 
          p:resourceLoaderPath="file://C:\template" 
          p:preferFileSystemAccess="true"/>  

    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName"><value>oracle.jdbc.driver.OracleDriver</value></property>
        <property name="url"><value>jdbc:oracle:thin:@x.x.x.x:x</value></property>
        <property name="username"><value>xxx</value></property>
        <property name="password"><value>xxx</value></property>
    </bean>              
</beans>

看看错误我会猜测自动装配没有开始,但是我无法弄清楚配置在哪里我弄错了。应用程序位于打包的jar文件中,我使用ClassPathXmlApplicationContext加载文件,因此应该找到它。我也不明白为什么它在日食上有效但在出口后没有。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

Spring3.0 atleast中的类PathMatchingResourcePatternResolver不会在jars中搜索标记有自动装配注释的类。

将jar所在的目录添加到类路径中。

它将检测类并加载为bean。