注意:所有文章除特别说明外,转载请注明出处.
Mybatis - FD
前言
1.原生态JDBC程序存在问题
public static void main(String[] args) {
//设置连接为null
Connection connection = null;
//设置预处理状态为null
PreparedStatement preparedStatement = null;
//设置结果集为null
ResultSet resultSet = null;
//检查异常并抛出异常