我目前正在尝试调试我的Java servlet,它遇到了与JDBC连接池连接的问题。
注意:我的servlet三天前工作正常,但现在它已停止工作,所以我假设我的Sun One网络服务器或数据库问题,但没有错误消息我不知道发生了什么。
我的servlet通常会通过浏览器返回一个XML响应,但是发生了这个错误,我只得到一个黑色文件。
在我的代码中精心设置了断点之后,我已经隔离了错误发生的地方,但我没有在此错误上返回任何信息。
它出现在我的getData()方法的这一行。
Statement stmt = conn.createStatement();
这是完整的数据库类
DatabaseLogic类
public class DatabaseLogic
{
private static Connection conn;
public static void openDatabase() throws IOException, SQLException,
NamingException
{
Context initialContext = new InitialContext();
Context envContext = (Context) initialContext.lookup("java:comp/env");
// servlet looks up for a connection pool called "jdbc/POOL"
DataSource ds = (DataSource) envContext.lookup("jdbc/POOL");
// connection is then made/requests to connection pool
try
{
conn = ds.getConnection();
}
catch (SQLException e)
{
String message = "Unable to connect to archive database : " + e;
XMLBuilder.dbError(message);
}
}
public static String getData(String queryId, int requestNumber)
throws SQLException
{
String result = "";
if (queryId != null)
{
try
{
// prepare a statement for use in query;
try
{
result = "This is where it breaks";
Statement stmt = conn.createStatement();
result = "This message does not get returned";
// query parameratised with queryId
String qry = "SELECT RECORD_ID, USER_ID, OPERATION_CD, BUSCOMP_NAME, OPERATION_DT, FIELD_NAME, OLD_VAL, NEW_VAL, AUDIT_LOG, ROW_ID, BC_BASE_TBL FROM S_AUDIT_ITEM WHERE RECORD_ID='"
+ queryId + "'";
try
{
ResultSet results = stmt.executeQuery(qry);
result = XMLBuilder.xmlBuilder(results, queryId,
requestNumber);
// close the connection
stmt.close();
results.close();
}
catch (SQLException e)
{
String message = "A database error occurred : " + e;
XMLBuilder.dbError(message);
}
}
catch (SQLException e)
{
String message = "A database error occurred : " + e;
XMLBuilder.dbError(message);
}
}
catch (Exception e)
{
// log.error("Cannot connect to database :" + e);
String message = "Unable to query the archive database : " + e;
XMLBuilder.dbError(message);
}
}
else
{
// not sure if ever reached
result = "The query parameter is a null value";
}
return result;
}
返回的所有信息都会发送到 XMLBuilder 以打包成XML,但不会返回任何内容。这意味着在处理异常时不会调用我的类中的函数。
XMLBuilder.dbError()
public static String dbError(String message)
{
//added uniquestring generator for id
String uniqueId = UUID.randomUUID().toString();
String result = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?> "
+ "<SMessage MessageId=\"" + uniqueId + "\" MessageType=\"Integration Object\" IntObjectName=\"Test\" IntObjectFormat=\"Siebel Hierarchical\""
+ " ReturnCode=\"1\" ErrorMessage=\"Database error" + message + ".\">" +
"</SMessage>";
return result;
}
如何返回错误消息以便我可以判断这是服务器错误还是我的servlet
三江源
圣诞快乐,节日快乐!
答案 0 :(得分:3)
您正在调用此方法:
XMLBuilder.dbError(message);
但不使用其结果。因此result
变量保持空白,这就是您返回给客户端的内容。
我宁愿把所有的execptions(你无法恢复)抛到顶级请求处理程序方法(否则你将复制所有的XML编组调用)。只有这样你才能:
这将为您提供更一致(重复性更低)的错误处理方式,而且您不必从代码的深处呈现XML包装错误。
顺便说一句,您的代码不是线程安全的。你在类上调用'静态'方法来建立连接等。你最好在一个服务方法中获得连接,语句等。