摘要:
1、新增类实现Interceptor,并加上@Intercepts注解,当Executor执行query或者StatementHandler prepare时拦截。 2、Invocation args中如果包含page则将MappedStatement 中的SqlSource 中的sql,添加分页功 阅读全文
摘要:
Model{ String name; String age; } 通过cglib动态代理 非接口的代理 获取model的field的值 判断值不能为null 或者不能为空字符串 MyCglibInterceptor extends MethodInterceptor{ String methodN 阅读全文
摘要:
1,Field 2,Method getAnnotation() Class Clazz... Clazz clazz=new Clazz... Field [] fields=ReflectionUtils.getAllFields(Clazz.class,m->m.getAnnotation(X 阅读全文
摘要:
传string至java $.ajax({ url : '', dataType : 'json', type : 'POST', data:{param:content}, success:function(data){ if(data.data.result==""){ }else{ alert 阅读全文
摘要:
1配置类 @Configuration excuteing blllaaaaaa1_valueexcuteing blllaaaaaa2_value1_value2_value 阅读全文
摘要:
枚举实现常量映射,应用场景:字典 public enum EnumDemo {STOCK("1",""),DEBT("2",""),FORWARD("3",""),COMPL("4","),OTHER("5","");private String name; private String index 阅读全文
摘要:
事件总线模式基于发布订阅模式,能够方便将副业务功能从主业务功能中脱离,在主业务逻辑上,只需要post事件,其他逻辑将在事件中执行 1、使用注解方式 @Subscribe将监听方法注册到总线上,当总线post event时,所有该event事件的方法都会得到执行 阅读全文
摘要:
/** * Created by it on 2017/6/7. */public class MyThread extends Thread { private int val; private Service service; static RealExecu realExecu=new Rea 阅读全文
摘要:
一、实现类继承AuthorizingRealm 1、实现方法doGetAuthenticationInfo,将定义的用户实体类填充map,realmPrincipals; 2、实现方法doGetAuthorizationInfo,填充roles ,Permissions; 二,创建subject 提 阅读全文
摘要:
动态代理 public class MyInvocationHandler implements InvocationHandler { private Object object=null; public Object bind(Object obj){ object=obj; return Pr 阅读全文