• Spring中的11个扩展点


    在这里插入图片描述

    1.自定义拦截器

    spring mvc拦截器根spring拦截器相比,它里面能够获取HttpServletRequest和HttpServletResponse等web对象实例。

    spring mvc拦截器的顶层接口是:HandlerInterceptor,包含三个方法:

    • preHandle 目标方法执行前执行
    • postHandle 目标方法执行后执行
    • afterCompletion 请求完成时执行

    为了方便我们一般情况会用HandlerInterceptor接口的实现类HandlerInterceptorAdapter类。

    假如有权限认证、日志、统计的场景,可以使用该拦截器。

    public class AuthInterceptor extends HandlerInterceptorAdapter {
    
        @Override
        public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
                throws Exception {
            String requestUrl = request.getRequestURI();
            if (checkAuth(requestUrl)) {
                return true;
            }
    
            return false;
        }
    
        private boolean checkAuth(String requestUrl) {
            System.out.println("===权限校验===");
            return true;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    拦截器注册到spring容器

    @Configuration
    public class WebAuthConfig extends WebMvcConfigurerAdapter {
     
        @Bean
        public AuthInterceptor getAuthInterceptor() {
            return new AuthInterceptor();
        }
    
        @Override
        public void addInterceptors(InterceptorRegistry registry) {
            registry.addInterceptor(new AuthInterceptor());
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    2.获取Spring容器对象

    2.1 BeanFactoryAware接口
    @Service
    public class PersonService implements BeanFactoryAware {
        private BeanFactory beanFactory;
    
        @Override
        public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
            this.beanFactory = beanFactory;
        }
    
        public void add() {
            Person person = (Person) beanFactory.getBean("person");
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    实现BeanFactoryAware接口,然后重写setBeanFactory方法,就能从该方法中获取到spring容器对象。

    2.2 ApplicationContextAware接口
    @Service
    public class PersonService2 implements ApplicationContextAware {
        private ApplicationContext applicationContext;
    
        @Override
        public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
            this.applicationContext = applicationContext;
        }
    
        public void add() {
            Person person = (Person) applicationContext.getBean("person");
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    实现ApplicationContextAware接口,然后重写setApplicationContext方法,也能从该方法中获取到spring容器对象。

    2.3 ApplicationListener接口
    @Service
    public class PersonService3 implements ApplicationListener<ContextRefreshedEvent> {
        private ApplicationContext applicationContext;
        @Override
        public void onApplicationEvent(ContextRefreshedEvent event) {
            applicationContext = event.getApplicationContext();
        }
    
        public void add() {
            Person person = (Person) applicationContext.getBean("person");
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    3.全局异常处理

    @RestControllerAdvice
    public class GlobalExceptionHandler {
    
        @ExceptionHandler(Exception.class)
        public String handleException(Exception e) {
            if (e instanceof ArithmeticException) {
                return "数据异常";
            }
            if (e instanceof Exception) {
                return "服务器内部异常";
            }
            retur nnull;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    4.类型转换器

    spring目前支持3中类型转换器:

    • Converter:将 S 类型对象转为 T 类型对象
    • ConverterFactory:将 S 类型对象转为 R 类型及子类对象
    • GenericConverter:它支持多个source和目标类型的转化,同时还提供了source和目标类型的上下文,这个上下文能让你实现基于属性上的注解或信息来进行类型转换。

    5.Bean放入Spring容器的方式

    链接: https://blog.csdn.net/qq_43141726/article/details/127235432?spm=1001.2014.3001.5501

    6.项目启动时

    1. CommandLineRunner
    2. ApplicationRunner
    @Component
    public class TestRunner implements ApplicationRunner {
    
        @Autowired
        private LoadDataService loadDataService;
    
        public void run(ApplicationArguments args) throws Exception {
            loadDataService.load();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    实现自己定制化需求

    7.修改BeanDefinition

    @Component
    public class MyBeanFactoryPostProcessor implements BeanFactoryPostProcessor {
        
        @Override
        public void postProcessBeanFactory(ConfigurableListableBeanFactory configurableListableBeanFactory) throws BeansException {
            DefaultListableBeanFactory defaultListableBeanFactory = (DefaultListableBeanFactory) configurableListableBeanFactory;
            BeanDefinitionBuilder beanDefinitionBuilder = BeanDefinitionBuilder.genericBeanDefinition(User.class);
            beanDefinitionBuilder.addPropertyValue("id", 123);
            beanDefinitionBuilder.addPropertyValue("name", "959ggg");
            defaultListableBeanFactory.registerBeanDefinition("user", beanDefinitionBuilder.getBeanDefinition());
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    在postProcessBeanFactory方法中,可以获取BeanDefinition的相关对象,并且修改该对象的属性。

    8.初始化Bean前后

    BeanPostProcessor接口:

    • postProcessBeforeInitialization 该在初始化方法之前调用。
    • postProcessAfterInitialization 该方法再初始化方法之后调用。
    @Component
    public class MyBeanPostProcessor implements BeanPostProcessor {
    
        @Override
        public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
            if (bean instanceof User) {
                ((User) bean).setUserName("959ggg");
            }
            return bean;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    9.初始化方法

    1. 使用@PostConstruct注解
    2. 实现InitializingBean接口
    9.1 使用@PostConstruct注解
    @Service
    public class AService {
        @PostConstruct
        public void init() {
            System.out.println("===初始化===");
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    9.2 实现InitializingBean接口
    @Service
    public class BService implements InitializingBean {
    
        @Override
        public void afterPropertiesSet() throws Exception {
            System.out.println("===初始化===");
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    10.关闭容器前

    关闭资源

    @Service
    public class DService implements InitializingBean, DisposableBean {
     
        @Override
        public void destroy() throws Exception {
            System.out.println("DisposableBean destroy");
        }
     
        @Override
        public void afterPropertiesSet() throws Exception {
            System.out.println("InitializingBean afterPropertiesSet");
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    通常情况下,我们会同时实现InitializingBean和DisposableBean接口,重写初始化方法和销毁方法。

    11.自定义作用域

    我们都知道spring默认支持的Scope只有两种:

    • singleton 单例,每次从spring容器中获取到的bean都是同一个对象。
    • prototype 多例,每次从spring容器中获取到的bean都是不同的对象。

    spring web又对Scope进行了扩展,增加了:

    • RequestScope 同一次请求从spring容器中获取到的bean都是同一个对象。
    • SessionScope 同一个会话从spring容器中获取到的bean都是同一个对象。

    同一个线程中从spring容器获取到的bean都是同一个对象:

    public class ThreadLocalScope implements Scope {
        private static final ThreadLocal THREAD_LOCAL_SCOPE = new ThreadLocal();
    
        @Override
        public Object get(String name, ObjectFactory<?> objectFactory) {
            Object value = THREAD_LOCAL_SCOPE.get();
            if (value != null) {
                return value;
            }
    
            Object object = objectFactory.getObject();
            THREAD_LOCAL_SCOPE.set(object);
            return object;
        }
    
        @Override
        public Object remove(String name) {
            THREAD_LOCAL_SCOPE.remove();
            return null;
        }
    
        @Override
        public void registerDestructionCallback(String name, Runnable callback) {
        }
    
        @Override
        public Object resolveContextualObject(String key) {
            return null;
        }
    
        @Override
        public String getConversationId() {
            return null;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    第二步将新定义的Scope注入到spring容器中:

    @Component
    public class ThreadLocalBeanFactoryPostProcessor implements BeanFactoryPostProcessor {
        @Override
        public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
            beanFactory.registerScope("threadLocalScope", new ThreadLocalScope());
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    第三步使用新定义的Scope:

    @Scope("threadLocalScope")
    @Service
    public class CService {
        public void add() {
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
  • 相关阅读:
    Neovim 配置全面解析(下)
    B-2:Linux系统渗透提权
    magisk 启动 安全 app
    VS中配置中添加宏与文件中添加宏的区别
    Docker命令
    不断电的品牌营销,2023年如何打造韧性力量!
    sed命令使用总结
    力扣(LeetCode)305. 岛屿数量 II(2022.11.02)
    C语言从文本到执行程序的过程(预编译,编译,汇编)
    7-1 sdut-oop-5 计算长方体和四棱锥的表面积和体积(类的继承) (10分)
  • 原文地址:https://blog.csdn.net/qq_43141726/article/details/127249641