public class UserServiceImpl implements UserService { @Override public boolean login(String username, String password) { Connection connection = JDBCUtils.getConnection(); boolean result = false; try { connection.setAutoCommit(false); UserDaoImpl userDao = new UserDaoImpl(); User user = userDao.selectByName(username); if (user != null && user.getPassword().equals(password)){ result = true; } connection.commit(); }catch (Exception e){ try { connection.rollback(); }catch (SQLException throwables){ throwables.printStackTrace(); } e.printStackTrace(); throw new RuntimeException(e); }finally { JDBCUtils.close(connection,null,null); } return result; }
时间: 2024-02-14 10:25:44 浏览: 72
UserServiceImpl.class
根据你提供的代码,我仍然没有找到静态初始化块或静态变量的定义。所以,ExceptionInInitializerError 异常可能是由于其他原因导致的。
根据堆栈跟踪信息,异常发生在 com.zengsq.service.impl.UserServiceImpl 类的 login 方法中的第15行。这个异常可能是由于以下原因之一引起的:
1. `JDBCUtils.getConnection()` 方法返回了一个 null 的连接对象,导致在调用 `connection.setAutoCommit(false)` 时出现了 NullPointerException 异常。
2. `UserDaoImpl` 类的 `selectByName` 方法在执行过程中抛出了异常,导致在比较密码时出现了 NullPointerException 或其他异常。
为了解决这个问题,你可以按照以下步骤进行调试:
1. 确保数据库连接配置正确,并且能够成功连接到数据库。
2. 检查 `JDBCUtils.getConnection()` 方法的实现,确保它返回一个有效的连接对象,而不是 null。
3. 检查 `UserDaoImpl` 类的 `selectByName` 方法的实现,确保它能够正确地查询用户信息,并且没有抛出异常。
4. 检查数据库中是否存在与传入的用户名相匹配的用户记录。确保查询结果不为 null,并且能够正确地获取用户对象和密码进行比较。
如果以上步骤都没有解决问题,请提供更多的代码和错误信息,我将尽力为你提供帮助。
阅读全文