摘要:
1、Java对象-->JSON对象 (JSONObject)JSONObject.toJSON(Java对象实例) 1 public class JSON2JavaTest{ 2 public static void main(String[] args) { 3 Student stu = new 阅读全文
摘要:
Spring AOP 默认对RuntimeException()异常或是其子类进行事务回滚,也就是说 事务回滚:throw new RuntimeException("xxxxxxxxxxxx"); 事物不回滚:throw new Exception("xxxxxxxxxxxx"); 那么,如何在抛 阅读全文