1.1.3_spring
nmgyangguangyuan
这个作者很懒,什么都没留下…
展开
-
20-Spring Boot AOP
AOP开发流程spring-boot-starter-aop加入依赖,默认开启了aop的支持 写一个Aspect,封装横切关注点,需要配置通知(前置通知,后置通知等)和切入点(切入点表达式) 这个Aspect需要纳入spring容器管理,并且需要加入@Aspect spring.aop.auto配置项决定是否启用AOP,默认启用 默认使用基于JDK的动态代理来实现...原创 2018-04-15 21:08:56 · 118 阅读 · 0 评论 -
17-Spring Boot Web
拦截器的使用步骤写一个拦截器,实现HandlerInterceptor接口 写一个类,集成WebMvcConfigurationSupport类,重写addInterceptors方法,并调用registry.addInterceptor,把上一步的拦截器加进去 HandlerInterceptor preHandle:controller执行之前调用 postHandle:co...原创 2018-04-14 17:10:28 · 112 阅读 · 0 评论 -
14-Spring Boot运行流程分析
Spring Boot运行流程分析 spring boot的启动实例化SpringApplication,然后调用run SpringApplication app = new SpringApplication(App.class);ConfigurableApplicationContext context = app.run(args); 直...原创 2018-04-12 22:19:14 · 329 阅读 · 0 评论