javax.naming.NoInitialContextException錯誤的解決方案

來源:互聯網
上載者:User

標籤:顯示   應用服務   catch   parameter   word   res   noi   nbsp   drive   

今天,學慣用了一下nutz架構,寫了一個HelloWorld的小程式,在用jndi配置資料來源時,寫了一個測試類別,並在main方法中調用了jndi獲得資料庫連接,但是報錯了,錯誤資訊如下:

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。

這是什麼問題呢,大體好像說是上下文初化異常!我看了一下我的配置

步驟:   
1. 在tomcat目錄下conf/context.xml檔案中 加入一下代碼 
      <Resource name="jdbc/test" 
      auth="Container" 
      type="javax.sql.DataSource" 
      driverClassName="net.sourceforge.jtds.jdbc.Driver" 
      url="jdbc:sqlserver://localhost:1433;databaseName=nutztest" 
      username="sa" 
      password="sa" 
      maxActive="100"   //串連池的最大資料庫連接數,設為0表示無限制 
      maxIdle="30"      //最大空閑數,設為0表示無限制 
      maxWait="10000"/> //最大串連等待時間.如果逾時將接到異常.設為  -1 表示無限制 

2.將jtds-1.2.5jar包,nutz.jar放到了工程中

3.  寫測試類別

public class Test{

public Connection getConnection(){ 
try { 
Context ctx = new InitialContext(); 
DataSource ds = (DataSource)ctx.lookup("jdbc/test"); 
conn = ds.getConnection(); 
} catch (NamingException e) { 
e.printStackTrace(); 
} catch (SQLException e) { 
e.printStackTrace(); 

return conn; 


public static void main(String[] args) { 
System.out.println(newTest().getConnection()); 

}

4.運行tomcat-- 運行測試代碼,拋出異常: 
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 
at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645) 
at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288) 
at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:325) 
at javax.naming.InitialContext.lookup(InitialContext.java:392) 

後來看到論壇裡的回複才知道原因

 

在用JNDI串連資料庫時用main函數測試時總報錯,InitialContext 是要在應用伺服器的上下文裡才有的。
你在普通的應用程式裡怎麼行!
放到tomcat裡面運行看看吧!不能用main函數直接測試,只能放到tomcat或者servlet、jsp顯示

javax.naming.NoInitialContextException錯誤的解決方案

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.