SpringBoot启动类中的配置

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/m18870420619/article/details/82020664

1,使用SpringContextHolder获取Bean实例

@Bean
  @Lazy(false)
  public SpringContextHolder springContextHolder() {
    return new SpringContextHolder();
  }
/**
 * 
 */
package cn.wkgb.common.utils;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.util.Assert;

/**
 * 以静态变量保存Spring ApplicationContext, 可在任何代码任何地方任何时候取出ApplicaitonContext.
 */
public class SpringContextHolder implements ApplicationContextAware, DisposableBean {
  private static ApplicationContext applicationContext = null;

  private static Log logger = LogFactory.getLog(SpringContextHolder.class);

  /**
   * 取得存储在静态变量中的ApplicationContext.
   */
  public static ApplicationContext getApplicationContext() {
    assertContextInjected();
    return applicationContext;
  }

  /**
   * 从静态变量applicationContext中取得Bean, 自动转型为所赋值对象的类型.
   */
  @SuppressWarnings("unchecked")
  public static <T> T getBean(String name) {
    assertContextInjected();
    return (T) applicationContext.getBean(name);
  }

  /**
   * 从静态变量applicationContext中取得Bean, 自动转型为所赋值对象的类型.
   */
  public static <T> T getBean(Class<T> requiredType) {
    assertContextInjected();
    return applicationContext.getBean(requiredType);
  }

  /**
   * 清除SpringContextHolder中的ApplicationContext为Null.
   */
  public static void clearHolder() {
    logger.debug("清除SpringContextHolder中的ApplicationContext:" + applicationContext);
    applicationContext = null;
  }

  /**
   * 实现ApplicationContextAware接口, 注入Context到静态变量中.
   */
  @Override
  public void setApplicationContext(ApplicationContext applicationContext) {
    logger.debug("注入ApplicationContext到SpringContextHolder:" + applicationContext);

    if (SpringContextHolder.applicationContext != null) {
      logger.warn("SpringContextHolder中的ApplicationContext被覆盖, 原有ApplicationContext为:"
          + SpringContextHolder.applicationContext);
    }

    SpringContextHolder.applicationContext = applicationContext; // NOSONAR
  }

  /**
   * 实现DisposableBean接口, 在Context关闭时清理静态变量.
   */
  @Override
  public void destroy() throws Exception {
    SpringContextHolder.clearHolder();
  }

  /**
   * 检查ApplicationContext不为空.
   */
  private static void assertContextInjected() {
    Assert.state(applicationContext != null,
        "applicaitonContext属性未注入, 请在applicationContext.xml中定义SpringContextHolder.");
  }
}

2,全局支持CORS(跨源请求)

​
  @Override
  public void addCorsMappings(CorsRegistry registry) {
    registry.addMapping("/api/**").allowedOrigins("*").allowedMethods("PUT", "DELETE", "POST").allowCredentials(false)
        .maxAge(3600);
  }

​

配置的详细信息说明如下: 
addMapping:配置可以被跨域的路径,可以任意配置,可以具体到直接请求路径。 
allowedMethods:允许所有的请求方法访问该跨域资源服务器,如:POST、GET、PUT、DELETE等。 
allowedOrigins:允许所有的请求域名访问我们的跨域资源,可以固定单条或者多条内容,如:”http://www.aaa.com“,只有该域名可以访问我们的跨域资源。 
allowedHeaders:允许所有的请求header访问,可以自定义设置任意请求头信息。

3,拦截器Interceptor

@Override
  public void addInterceptors(InterceptorRegistry registry) {

    registry.addInterceptor(new LoginInterceptor());
    //这里需要自己写一个拦截器,否则在@Resource依赖注入时,发现运行的时候被注解的对象是null,没被注入进去
    registry.addWebRequestInterceptor(new WebRequestInterceptorImpl());
    // super.addInterceptors(registry);

  }
public class LoginInterceptor extends HandlerInterceptorAdapter {
//在这添加需要拦截的url
}

猜你喜欢

转载自blog.csdn.net/m18870420619/article/details/82020664
今日推荐