Z
z1w2x3
Unregistered / Unconfirmed
GUEST, unregistred user!
我的servlet 代码如下:
1 public void init(ServletConfig config) throws ServletException {
2 super.init(config);
3 try {
4 String initCtxFactory = getInitParameter(Context.INITIAL_CONTEXT_FACTORY);
5 String providerURL = getInitParameter(Context.PROVIDER_URL);
6 Properties env = new Properties();
7 env.put(Context.INITIAL_CONTEXT_FACTORY, initCtxFactory);
8 env.put(Context.PROVIDER_URL, providerURL);
.
.
.
.
.
}
编译正常,但在weblogic下运行是出现如下错误:
java.lang.NullPointerException
错误行:第7行
我怀疑是第4行的initCtxFactory值为Null
请各位大侠帮忙。
1 public void init(ServletConfig config) throws ServletException {
2 super.init(config);
3 try {
4 String initCtxFactory = getInitParameter(Context.INITIAL_CONTEXT_FACTORY);
5 String providerURL = getInitParameter(Context.PROVIDER_URL);
6 Properties env = new Properties();
7 env.put(Context.INITIAL_CONTEXT_FACTORY, initCtxFactory);
8 env.put(Context.PROVIDER_URL, providerURL);
.
.
.
.
.
}
编译正常,但在weblogic下运行是出现如下错误:
java.lang.NullPointerException
错误行:第7行
我怀疑是第4行的initCtxFactory值为Null
请各位大侠帮忙。