摘要: //默认spring只能在捕获到runtimeException时才会回滚, throw new RuntimeException("出现runtime异常"); } catch (BadPaddingException bpe) { } catch (Exception e) { TransactionAspectSupport.currentTransacti... 阅读全文
posted @ 2018-06-15 15:16 jwcc 阅读(164) 评论(0) 推荐(0) 编辑
摘要: SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String sd = sdf.format(new Date(Long.parseLong("1529045276")*1000)); // *1000 解决1970年问题 System.out.println(sd); 阅读全文
posted @ 2018-06-15 14:51 jwcc 阅读(152) 评论(0) 推荐(0) 编辑