50.创建存储过程失败。 线上原服务器成功创建,root账户; 本地成功创建,root账户。 新服务器非root账户,报错,很可能是权限不足导致的。 ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQ L DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
51. class Service{ @Transactional(readOnly=true,propagation=Propagation.REQUIRES_NEW) public Long add(); public Long add2(){ this.add2(); } add2方法没有事务,要想让声明式事务Transactional起作用,需要经过代理类,一个类内部之间的方法调用,没有经过代理类, 类之间的方法调用才会经过代理类。 }