摘要:
什么是全局事务 Spring Boot(Spring)事务是通过aop(aop相关术语:通知(Advice)、连接点(Joinpoint)、切入点(Pointcut)、切面(Aspect)、目标(Target)、代理(Proxy)、织入(Weaving))切面编程来实现的,此时我们就可以对指定的包的 阅读全文
摘要:
JSON字符串与Map互转 //一、map转为json字符串 public static String map2jsonstr(Map<String,?> map){ return JSONObject.toJSONString(map); } //二、json字符串转Map对象 public st 阅读全文