使用了annotation的工程导出jar在运行时,报找不到@Service修饰的类。但是在工程里执行没有问题。报错如下:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'wikiCategoryMigrateService' is defined
解决:
1将bean定义定义到xml中。这样即使不存在directory entries(DE),Spring也能找到bean。
2使用export jar+Add directory entries把directory entries导出到classpath。但是由于export jar没办法将依赖的jar导出。所以需要使用外部cp指定。
3export runnable jar同时save as ant script, 然后修改ant script,将<jar destfile="/Users/zhonghua/Desktop/transfer.jar">里面添加属性 filesonly="false"。目前测试好象不行。
4利用maven的assemble打jar.
二种导出DE的办法:
DE一种是存在于jar被外界依赖,比如某个war依赖于某个jar,而该jar导出时没有包含DE应该也没关系。只要该jar位于war文件的/WEB-INFO/lib目录下,将来被同一个classloader加载就没有问题。个人理解war在调用jar的时候,会扫描jar形成DE并放到classpath下。
另一种情况是没有war调用jar,jar需要单独执行,此时生成DE的办法是导出jar的时候导出,ant是在jar的任务中添加filesonly="false", eclipse需要通过选中Add directory entries实现。
原理:annotation不会扫描jar,而是会扫描directory entries,因此Spring的文档中强调如果ant导出jar时,需要将files-only="false"
"The scanning of classpath packages requires the presence of corresponding directory entries in the classpath. When you build JARs with Ant, make sure that you do not activate the files-only switch of the JAR task".
相关文章
- 关于Exceptionless的使用注意
- Redis缓存何以一枝独秀?——从百变应用场景与热门面试题中感受下Redis的核心特性与使用注意点
- SAS使用where keep drop rename obs 选项使用时需注意的几点
- Python 中模块间全局变量的使用上的注意
- 在spring boot环境中使用fastjson + redis的高速缓存技术
- 开涛spring3(2.3) - IoC的配置使用
- Spring Cloud Hystrix的使用
- tensorflow一些常用函数的使用注意
- spring security3.x学习(14)_关系型数据库使用的UserDetailsService(JdbcDaoImpl)
- Spring不能在使用JUnit的单元测试中自动装配