try(){
}catch(Exception e){
}
在catch中打出完整错误日志,包括Exception类型和报错行数
方法:在catch块中加入代码
1)ByteArrayOutputStream baos = new ByteArrayOutputStream();
e.printStackTrace(new PrintStream(baos));String exception = baos.toString();
System.out.println("baos:" + exception);
2)logger.error("",e);