摘要:
//默认spring只能在捕获到runtimeException时才会回滚, throw new RuntimeException("出现runtime异常"); } catch (BadPaddingException bpe) { } catch (Exception e) { TransactionAspectSupport.currentTransacti... 阅读全文
摘要:
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); 阅读全文