关于preparestatement行 报java.lang.NullPointerException

今天练习做jdbc利用工具类完成curd操作的这么个东西,在测试执行的时候一直报java.lang.NullPointerException

工具类是这样的

public class jdbcutils {

	public static Connection getConnection() throws Exception{
		Class.forName("com.mysql.jdbc.Driver");
		
		Connection connection=(Connection) DriverManager.getConnection("jdbc:mysql://localhost:3307/apartment","root","111222");
		return null;
	}
	
	public static void closeResource(Connection connection,PreparedStatement statement,ResultSet tResultSet){
		
		clostResultset(tResultSet);
		cloststatement(statement);
		closeConn(connection);
	}
	
	public static void closeConn(Connection conn) {
		if(conn!=null){
			try {
				conn.close();
			} catch (SQLException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			conn=null;
		}
	}
	
	public static void cloststatement(PreparedStatement statement){
		if(statement!=null){
			try {
				statement.close();
			} catch (SQLException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			statement=null;
		}
	}
	
	public static void clostResultset(ResultSet resultSet){
		if(resultSet!=null){
			try {
				resultSet.close();
			} catch (SQLException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			resultSet=null;
		}
	}
}


测试代码是这样的


@Test
	public void run2() throws Exception{
		Connection connection=null;
		ResultSet resultSet=null;
		PreparedStatement statement=null;
		//PreparedStatement statemen;
		
		try {
			connection=jdbcutils.getConnection();
			//System.out.println(connection);
			String sqlString="insert into apartment values(?,?,?,?)";
			
			statement=connection.prepareStatement(sqlString);
			
			statement.setInt(1, 11);
			statement.setString(2, "外联部");
			statement.setString(3, "详情");
			statement.setString(4, "0");
			
			int i=statement.executeUpdate();
			
			if(i==1){
				System.out.println("执行成功");
			}else {
				System.out.println("失败");
			}
		} catch (Exception e) {
			e.printStackTrace();
		}finally{
			jdbcutils.closeResource(connection, statement, resultSet);
		}
	}
}

百思不得其解,各种百度


其中有个方法是说 出现这种报错是因为mysql的服务还没开,于是去检查了一下服务,状态是正在运行,排除


还有的虽然报错和我的一样,但是代码都有所不同,因此他们代码里面的错误在我这边也并没有出现

搜了挺久的 后面看到一个回复说 可以打印报错行前面,看看是否为空,于是我打印了connection ,果然是空的,所以其实问题出在connection这里。就觉得可能是工具类的问题。

去看了工具类,才发现,getconnection方法返回的居然是null,是编写代码的时候为了开始不报错,就先设置为空,但是后面又忘了改过来了 。为自己的忘性感到十分地忧伤。




评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值