第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

javax.naming.NamingException:名稱未綁定到上下文

javax.naming.NamingException:名稱未綁定到上下文

回首憶惘然 2023-06-21 14:54:18
我的監(jiān)聽器代碼如下package org.javaimplant.newsfeed.Init;import javax.naming.Context;import javax.naming.InitialContext;import javax.naming.NameClassPair;import javax.naming.NamingEnumeration;import javax.servlet.ServletContext;import javax.servlet.ServletContextEvent;import javax.servlet.ServletContextListener;import javax.sql.DataSource;import org.apache.log4j.Logger;import org.javaimplant.newsfeed.Servlets.DataSourceServlet;import org.javaimplant.newsfeed.data.DataAccessObject;public class Init implements ServletContextListener {    private Logger logger=Logger.getLogger(this.getClass());    public void contextInitialized(ServletContextEvent sce)     {        ServletContext servletContext = sce.getServletContext();        try {        contextInitialized2(servletContext);        }        catch (Exception e)        {        logger.error("Initialization failed.", e);        throw new RuntimeException(e);        }        logger.debug("Initialization succeeded.");      }    private void contextInitialized2(ServletContext servletContext)    throws Exception     {        InitialContext enc = new InitialContext();        NamingEnumeration<NameClassPair> list = enc.list("java:comp/env/datasource");        while (list.hasMore())        {          System.out.println(list.next().getName());        }        Context compContext = (Context) enc.lookup("java:comp/env");        DataSource dataSource = (DataSource) compContext.lookup("datasource");//      DataAccessObject.setDatasource(dataSource);        DataSourceServlet.setDataSource(dataSource);    }    public void contextDestroyed(ServletContextEvent sce) {        // TODO Auto-generated method stub    }}運(yùn)行代碼時(shí)出現(xiàn)以下錯(cuò)誤。我不知道為什么我的應(yīng)用程序無法從 xml 文件中讀取上下文。請(qǐng)幫忙javax.naming.NamingException:名稱未綁定到 org.javaimplant.newsfeed.Init.Init.contextInitialized(Init.java:29) 處的上下文
查看完整描述

1 回答

?
收到一只叮咚

TA貢獻(xiàn)1821條經(jīng)驗(yàn) 獲得超5個(gè)贊

好的,所以 Eclipse 在工作區(qū)中維護(hù)自己獨(dú)立的服務(wù)器配置,您必須在那里進(jìn)行更改



查看完整回答
反對(duì) 回復(fù) 2023-06-21
  • 1 回答
  • 0 關(guān)注
  • 396 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)