我在服务器上运行批处理作业时遇到问题,而在我的开发工作站上从Eclipse运行正常。
我已经使用Roo设置了我的Spring环境,创建了一个实体,并制作了一些可以完成某些工作的批处理,并在我的开发框中进行了测试。我初始化我的上下文并完成工作,但是当我在服务器上运行我的批处理时,上下文没有正确初始化。这是代码:
public class TestBatch {
private static ApplicationContext context;
@SuppressWarnings("unchecked")
public static void main(final String[] args) {
context = new ClassPathXmlApplicationContext("/META-INF/spring/applicationContext.xml");
try {
@SuppressWarnings("unused")
TestBatch app = new TestBatch();
} catch (Exception ex) {
ex.printStackTrace();
}
}
public void TestBatch() { /** Do Something using the context **/ }
}
这是日志和例外:
2010-02-16 11:54:16,072 [main] INFO org.springframework.context.support.ClassPathXmlApplicationContext - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@6037fb1e: startup date [Tue Feb 16 11:54:16 CET 2010]; root of context hierarchy
Exception in thread "main" java.lang.ExceptionInInitializerError
at org.springframework.context.support.AbstractRefreshableApplicationContext.createBeanFactory(AbstractRefreshableApplicationContext.java:194)
at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:127)
at org.springframework.context.support.AbstractApplicationContext.obtainFreshBeanFactory(AbstractApplicationContext.java:458)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:388)
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:139)
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:83)
at tld.mydomain.myproject.batch.TestBatch.main(TestBatch.java:51)
Caused by: java.lang.NullPointerException
at org.springframework.beans.factory.support.DefaultListableBeanFactory.<clinit>(DefaultListableBeanFactory.java:103)
... 7 more
关于发生了什么的任何想法或提示?我的classpath设置为$ PROJECTHOME / target / classes,我的所有依赖项都在$ PROJECTHOME / target / lib中,我执行使用“export CLASSPATH = $ PROJECTHOME / target / classes; java -Djava.endorsed.dirs = $ PROJECTHOME / target / lib tld.mydomain.myproject.batch.TestBatch“
我的设置中有什么东西看起来非常错误吗?当我从Eclipse运行它时没有问题,但是当我将它部署在我想运行它的服务器上并按上面所述运行它时,我遇到了这个问题。因为它是从Eclipse运行的,所以我相信我的配置文件没问题,但是如何调试导致这种情况的原因呢?也许我有一些配置错误或服务器和开发工作站之间的不匹配?或者这是一种非常奇怪的方式,说找不到文件,如果是这样,我如何确保找到正确的文件??
我真的很期待听到你关于如何解决这个问题的建议。
干杯
的Nik
答案 0 :(得分:7)
问题的原因是-Djava.endorsed.dirs=$PROJECTHOME/target/lib
org.springframework.beans.factory.support.DefaultListableBeanFactory
包含以下代码:
static {
ClassLoader cl = DefaultListableBeanFactory.class.getClassLoader();
try {
javaxInjectProviderClass = cl.loadClass("javax.inject.Provider"); //Line 103
}
catch (ClassNotFoundException ex) {
// JSR-330 API not available - Provider interface simply not supported then.
}
}
它会导致NullPointerException
,因为getClassLoader()
在通过null
加载课程时会返回-Djava.endorsed.dirs
。来自javadoc:
某些实现可能使用null来表示引导类加载器。
所以,使用-classpath
(明确说明所有广告)而不是-Djava.endorsed.dirs
答案 1 :(得分:2)
添加用户库时,会出现线程“main” java.lang.ExceptionInInitializerError 中的异常。我在 Hibernate 和 Spring 中也遇到了同样的问题。所以我删除用户库说“ Spring ”然后我手动添加罐子它完美地工作。
答案 2 :(得分:1)
在Eclipse中:
如果您使用spring jars
作为用户库(Say SpringLib),请查看spring的用户库是否为added(or checked)
作为系统库(添加到引导类路径)。如果是,remove
复选标记。
答案 3 :(得分:0)
只需将jar添加到引用的库而不是用户库。它对我有用!