当前位置: 首页 > 知识库问答 >
问题:

错误:javax。命名。NoInitialContextException:无法使用哈希表中指定的工厂创建InitialContext

魏勇军
2023-03-14

我有下面的JSP。

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@page import="java.sql.*"%>
<%@page import="javax.sql.*"%>
<%@page import="java.util.*"%>
<%@page import="javax.naming.*"%>
<%@page import="java.io.*" %>

<html>
<head>
<%!
	class LinkedProperties extends Properties {

		private final LinkedHashSet<Object> keys = new LinkedHashSet<Object>();

		public Enumeration<Object> keys() {
			return Collections.<Object>enumeration(keys);
		}

		public Object put(Object key, Object value) {
			keys.add(key);
			return super.put(key, value);
		}
	}

	public String getData(ResultSet rs, String tableName) throws Exception {
		String ret ="<div class='tname'>"+tableName+"</div>";
		ret+="<table border=1>";
		ret+="<tr>";
		ResultSetMetaData md = rs.getMetaData() ;
		for( int i = 1; i <= md.getColumnCount(); i++ ) {
			if(md.getColumnLabel(i).equals("UPDATE_DATE") || md.getColumnLabel(i).equals("Update Date")) {
				ret = ret + "<th class='upd'>"+ md.getColumnLabel(i) + "</th>";		
			} else if(md.getColumnLabel(i).equals("ASSIGNED_TO") || md.getColumnLabel(i).equals("Assigned To")) {
				ret = ret + "<th class='upd'>"+ md.getColumnLabel(i) + "</th>";		
			} else if(md.getColumnLabel(i).equals("UPDATED_BY") || md.getColumnLabel(i).equals("Updated By")) {
				ret = ret + "<th class='upd'>"+ md.getColumnLabel(i) + "</th>";		
			} else {
	         	ret = ret + "<th>"+ md.getColumnLabel(i) + "</th>";		
	        }	
        } 
        ret+="</tr>";
		int cnt = 0;
		while( rs.next() )
        {
			cnt++;
			ret+="<tr>";
			for( int i = 1; i <= md.getColumnCount(); i++ )
			{
				if(rs.getString(i) == null) {
					ret = ret + "<td>&nbsp;</td>";		
				} else {
					ret = ret + "<td>"+ rs.getString(i) + "</td>";		
				}
			}
			ret+="</tr>";
         }		
		if(cnt == 0) return "";
        ret+="</table><BR/>";
        return ret;
	}
%>
<%!
	public String execute(Connection conn, String str, String tableType)  throws Exception {
		Statement stmt = null;
		ResultSet rset = null;
		try {
			stmt = conn.createStatement();
			rset = stmt.executeQuery(str);
			return getData(rset, tableType);
		} catch (Exception exp) {
			throw exp;
		} finally {
			try { rset.close(); } catch (Exception ignore) {}
			try { stmt.close(); } catch (Exception ignore) {}
		}
	}
%>
 
<%
String key, val;
String sql = "";
String ret = "";
Connection conn = null;
try {
	
	String typ = "role";//request.getParameter("t");
	if(typ==null) throw new Exception("Type is blank");
	if(!typ.equals("role") && !typ.equals("produit")) {
		throw new Exception("Invalid Type");
	}
	
	InputStream stream = application.getResourceAsStream("/tasksdisplay.properties");
	LinkedProperties props = new LinkedProperties();
	props.load(stream);

	LinkedHashMap<String, String> mapSQL = new LinkedHashMap<String, String>();
	
	String dbname = "mdmtrg01-CMX_ORS";//request.getParameter("d");
	if(dbname == null) {
		dbname = "mdmtrg01-CMX_ORS";
	}
	
	String dbJNDIName = "java:jdbc/siperian-mdmtrg01-cmx_ors-ds";//System.getProperty(dbname);
	if(dbJNDIName == null) {
		throw new Exception("Invalid database name. Must set dbname in JBoss startup");
	}
	
	Hashtable env = new Hashtable(); 
env.put(Context.INITIAL_CONTEXT_FACTORY,
     "com.ibm.websphere.naming.WsnInitialContextFactory");
env.put(Context.PROVIDER_URL, "iiop://mdma302p.corpads.local:30305");
Context initialContext = new InitialContext(env); 
	
	Context aContext = new InitialContext(env);
	DataSource aDataSource = (DataSource)aContext.lookup("java:jdbc/siperian-mdmtrg01-cmx_ors-ds");
	//DataSource aDataSource = (DataSource)aContext.lookup(dbJNDIName);
	conn = (Connection)(aDataSource.getConnection());

	for (Map.Entry<String,String> entry : mapSQL.entrySet()) {
		key = entry.getKey();
		sql = entry.getValue();
		ret = execute(conn, sql, key);
		%>
			<%=ret%> 
		<%
	}
%>

<%
} catch (Exception exp) {
	exp.printStackTrace();
	String err = exp.toString();
	err += "<BR/>sql##E:"+sql;
%>
	Error:<%=err%>
<%	
} finally {
	try { conn.close(); } catch (Exception ignore) {}
}
%>

<style>
.tname {
	color: red;
	font-size: 16px;
	font-weight:bold;
}

table{
	font-family: Verdana;
    font-size: 12px;
    font-weight: normal;
    text-align: center;	
}

table th {
	color: #225F8E;
}

table td {
	background-color: #DBFCF5;
}

a {
	color: blue;
}

.upd {
	background-color: yellow;
}

</style>

</head>
</html>

我正在使用JDK1.7。在添加了2个jar之后,我得到了以下错误:javax。命名。尚未设置java:名称空间的ConfigurationException:名称空间访问器。可能的原因是用户在JNDI上下文方法调用中指定了java:URL名称,但没有在J2EE客户端或服务器环境中运行。

正在端口8080上启动预览服务器

模块:customTabFromKb_1(/customTabFromKb_1)代理(/代理)

请在这方面帮助我!

共有1个答案

王云
2023-03-14

您的代码不可读,也不可维护。scriptlet的使用(

更多信息可在此处找到

然而,谈到您最初的问题,我认为包含类(com.ibm.websphere.naming.WsnInitialContextFactory)的jar不在项目的类路径中。您可能需要在类路径中添加客户机jar。

 类似资料:
  • 线程“main”中的异常javax.naming.NoFirst alContextException:需要在环境或系统属性中指定类名,或者作为小程序参数,或者在应用程序资源文件中指定类名:java.naming.factory.initialjavax.naming.spi.NamingManager.getjavax.naming.的初始上下文(未知源)ontext.getjavax.nami

  • 循环在具有特定键值对的文本文件上运行三次。每个循环都会返回一个新的散列,如下所示。我想将这些散列存储到另一个散列中。,和是散列的关键: 我将上述散列初始化为而不是我想将它们存储到散列中。我想初始化更大的散列,比如。 但它只给了我

  • 问题内容: 我想获得像这样的Hashtable的JSON表示形式: 结果是: 但是,如果将JSON字符串转换回去,则不会得到HashTable,而会得到PSCustomObject。 那么,如何可靠地序列化上述Hashmap? 问题答案: $json = @{Path=”C:\temp”; Filter=”*.js”} | ConvertTo-Json

  • 我试图在DAO类中注入EntityManager。 但我在服务器初始化(WildFly 10.0.0)期间收到此错误。 18: 35:57318错误[org.springframework.web.context.ContextLoader](ServerService线程池--60)上下文初始化失败:org。springframework。豆。工厂BeanCreationException:创建

  • 问题内容: 我有一百万行.txt格式的数据。格式很简单。对于每一行: 你知道我的意思。对于每个用户,它可能出现很多次,或者只出现一次(您永远不会知道)。我需要找出每个用户的所有值。因为用户可能会随机出现,所以我使用了Hashmap来做到这一点。即:HashMap(键:字符串,值:ArrayList)。但是要向arrayList添加数据,我必须不断使用HashMap get(key)来获取array

  • 问题内容: 我正在尝试使用hibernate模式创建项目,但如果删除该行,则在create所在行中有异常- 项目将成功运行。我正在寻找解决方案,我阅读了这篇文章,并添加了依赖性,但这并不能解决问题 行是: 等于代码中的行: 依存关系 问题答案: 从Hibernate v3.6起,注释类已合并到核心中。您已经指定了对非常旧的注释jar的依赖关系,而该注释jar无法使用Hibernate core 5