Tất cả
Tôi đã tạo một tệp jar với MANIFEST.MF sau bên trong:
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.8.3
Created-By: 1.6.0_25-b06 (Sun Microsystems Inc.)
Main-Class: my.Main
Class-Path: . lib/spring-core-3.2.0.M2.jar lib/spring-beans-3.2.0.M2.jar
Trong thư mục gốc của nó có một tệp được gọi là my.config được tham chiếu trong spring-context.xml của tôi như thế này:
<bean id="..." class="...">
<property name="resource" value="classpath:my.config" />
</bean>
Nếu tôi chạy jar, mọi thứ đều ổn, trừ việc tải tệp cụ thể đó:
Caused by: java.io.FileNotFoundException: class path resource [my.config] cannot be resolved to absolute file path because it does not reside in the file system: jar:file:/D:/work/my.jar!/my.config
at org.springframework.util.ResourceUtils.getFile(ResourceUtils.java:205)
at org.springframework.core.io.AbstractFileResolvingResource.getFile(AbstractFileResolvingResource.java:52)
at eu.stepman.server.configuration.BeanConfigurationFactoryBean.getObject(BeanConfigurationFactoryBean.java:32)
at eu.stepman.server.configuration.BeanConfigurationFactoryBean.getObject(BeanConfigurationFactoryBean.java:1)
at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:142)
... 22 more
- các lớp được tải từ bên trong jar
- mùa xuân và các phụ thuộc khác được tải từ các lọ riêng biệt
- ngữ cảnh mùa xuân được tải (ClassPathXmlApplicationContext mới ("spring-context / applicationContext.xml"))
- my.properties được tải vào PropertyPlaceholderConfigurer ("classpath: my.properties")
- nếu tôi đặt tệp .config của mình bên ngoài hệ thống tệp và thay đổi url tài nguyên thành 'tệp:', mọi thứ dường như ổn ...
Bất kỳ lời khuyên?