JNDI中Context初始化的問題!請幫幫忙,急需解決!

seaman0916發表於2004-04-10
Context initCtx = new InitialContext();
initCtx.bind("DataSource", source);
DataSource ds =(DataSource)initCtx.lookup("DataSource");
Connection conn=ds.getConnection();

我在JSP中是沒有問題的,但是我現在想把它寫在javabean中,就會出現:

javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial

請問:這個問題應該如何解決? 應該是設定InitialContext建構函式的引數吧!

相關文章