当前位置: 首页>>代码示例>>Java>>正文


Java SpringBeanAutowiringSupport类代码示例

本文整理汇总了Java中org.springframework.web.context.support.SpringBeanAutowiringSupport的典型用法代码示例。如果您正苦于以下问题:Java SpringBeanAutowiringSupport类的具体用法?Java SpringBeanAutowiringSupport怎么用?Java SpringBeanAutowiringSupport使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


SpringBeanAutowiringSupport类属于org.springframework.web.context.support包,在下文中一共展示了SpringBeanAutowiringSupport类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: clean

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
/**
 * Clean up expired records.
 */
@Scheduled(initialDelayString = "${cas.authn.mfa.trusted.cleaner.startDelay:PT10S}",
           fixedDelayString = "${cas.authn.mfa.trusted.cleaner.repeatInterval:PT60S}")
public void clean() {

    if (!trustedProperties.getCleaner().isEnabled()) {
        LOGGER.debug("[{}] is disabled. Expired trusted authentication records will not automatically be cleaned up by CAS",
                getClass().getName());
        return;
    }

    try {
        LOGGER.debug("Proceeding to clean up expired trusted authentication records...");
        
        SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
        final LocalDate validDate = LocalDate.now().minus(trustedProperties.getExpiration(),
                DateTimeUtils.toChronoUnit(trustedProperties.getTimeUnit()));
        LOGGER.info("Expiring records that are on/before [{}]", validDate);
        this.storage.expire(validDate);
    } catch (final Exception e) {
        LOGGER.error(e.getMessage(), e);
    }
}
 
开发者ID:mrluo735,项目名称:cas-5.1.0,代码行数:26,代码来源:MultifactorAuthenticationTrustStorageCleaner.java

示例2: init

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
@Override
public void init(ServletConfig config) throws ServletException {
    super.init(config);
    try {
        SpringBeanAutowiringSupport.processInjectionBasedOnServletContext(this, config.getServletContext());
        configuration.load();
        initializeProviders();
        initializeActiviti();
        addDeployTargets();
        initExtras();
        configuration.logFullConfig();
        processEngine.getProcessEngineConfiguration().getJobExecutor().start();
        LOGGER.info(Messages.ALM_SERVICE_ENV_INITIALIZED);
    } catch (Exception e) {
        LOGGER.error("Initialization error", e);
        throw new ServletException(e);
    }
}
 
开发者ID:SAP,项目名称:cf-mta-deploy-service,代码行数:19,代码来源:BootstrapServlet.java

示例3: init

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
@Override
public void init(final ServletConfig config) throws ServletException {
    SpringBeanAutowiringSupport.processInjectionBasedOnServletContext(this, config.getServletContext());

    // wait when condition is ready for initialization
    _timer.scheduleAtFixedRate(new TimerTask() {
        @Override
        public void run() {
            if (ComponentContext.getApplicationContext() != null) {
                _timer.cancel();

                final TransactionLegacy txn = TransactionLegacy.open(TransactionLegacy.CLOUD_DB);
                try {
                    ComponentContext.initComponentsLifeCycle();
                } finally {
                    txn.close();
                }
            }
        }
    }, 0, 1000);
}
 
开发者ID:MissionCriticalCloud,项目名称:cosmic,代码行数:22,代码来源:CloudStartupServlet.java

示例4: doFilter

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
    if (backupService == null) {
        SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
    }

    String url = ((HttpServletRequest) request).getRequestURI();
    if (isBackupFinishJsonUrl(url)) {
        ((HttpServletResponse) response).setHeader("Cache-Control", "private, max-age=0, no-cache");
        ((HttpServletResponse) response).setDateHeader("Expires", 0);
        generateResponseForIsBackupFinishedAPI(response);
        return;
    }
    if (backupService.isBackingUp()) {
        ((HttpServletResponse) response).setHeader("Cache-Control", "private, max-age=0, no-cache");
        ((HttpServletResponse) response).setDateHeader("Expires", 0);
        if (isAPIUrl(url) && !isMessagesJson(url)) {
            generateAPIResponse(request, response);
        } else {
            generateHTMLResponse(response);
        }
    } else {
        chain.doFilter(request, response);
    }

}
 
开发者ID:gocd,项目名称:gocd,代码行数:27,代码来源:BackupFilter.java

示例5: init

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
@Override
public void init(ServletConfig config) throws ServletException {
    LogUtils.initLog4j("log4j-cloud.xml");
    SpringBeanAutowiringSupport.processInjectionBasedOnServletContext(this, config.getServletContext());

    // wait when condition is ready for initialization
    _timer.scheduleAtFixedRate(new TimerTask() {
        @Override
        public void run() {
            if (ComponentContext.getApplicationContext() != null) {
                _timer.cancel();

                TransactionLegacy txn = TransactionLegacy.open(TransactionLegacy.CLOUD_DB);
                try {
                    ComponentContext.initComponentsLifeCycle();
                } finally {
                    txn.close();
                }
            }
        }
    }, 0, 1000);
}
 
开发者ID:apache,项目名称:cloudstack,代码行数:23,代码来源:CloudStartupServlet.java

示例6: execute

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
@Override
public void execute(final JobExecutionContext jobExecutionContext) throws JobExecutionException {
    SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
    try {
        logger.info("Beginning audit cleanup...");
        decrementCounts();
    } catch (final Exception e) {
        logger.error(e.getMessage(), e);
    }
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:11,代码来源:AbstractInMemoryThrottledSubmissionHandlerInterceptorAdapter.java

示例7: clean

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
@Override
public final void clean() {
    LOGGER.debug("Starting to clean expiring and previously used google authenticator tokens");
    SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
    cleanInternal();
    LOGGER.info("Finished cleaning google authenticator tokens");
}
 
开发者ID:mrluo735,项目名称:cas-5.1.0,代码行数:8,代码来源:BaseOneTimeTokenRepository.java

示例8: execute

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
@Override
public void execute(final JobExecutionContext jobExecutionContext) throws JobExecutionException {
    SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);

    try {
        logger.info("Beginning ticket cleanup...");
        final Collection<Ticket> ticketsToRemove = Collections2.filter(this.getTickets(), new Predicate<Ticket>() {
            @Override
            public boolean apply(@Nullable final Ticket ticket) {
                if (ticket.isExpired()) {
                    if (ticket instanceof TicketGrantingTicket) {
                        logger.debug("Cleaning up expired ticket-granting ticket [{}]", ticket.getId());
                        logoutManager.performLogout((TicketGrantingTicket) ticket);
                        deleteTicket(ticket.getId());
                    } else if (ticket instanceof ServiceTicket) {
                        logger.debug("Cleaning up expired service ticket [{}]", ticket.getId());
                        deleteTicket(ticket.getId());
                    } else {
                        logger.warn("Unknown ticket type [{} found to clean", ticket.getClass().getSimpleName());
                    }
                    return true;
                }
                return false;
            }
        });
        logger.info("{} expired tickets found and removed.", ticketsToRemove.size());
    } catch (final Exception e) {
        logger.error(e.getMessage(), e);
    }
}
 
开发者ID:yuweijun,项目名称:cas-server-4.2.1,代码行数:31,代码来源:DefaultTicketRegistry.java

示例9: init

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
/**
 * Cette méthode init pourrait être déplacée dans une classe abstraite
 *
 * @see javax.servlet.GenericServlet#init()
 */
@Override
public void init() throws ServletException {
    super.init();
    // déclenchement de l'autowiring de la classe
    SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
    // on ne peut pas faire d'autowire par constructeur dans ce cas là
}
 
开发者ID:Eulbobo,项目名称:java-samples,代码行数:13,代码来源:HelloServlet.java

示例10: PersistentObjectIdResolver

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
/**
 * Default Constructor that injects beans automatically.
 *
 * @param entityClass
 */
protected PersistentObjectIdResolver() {
	// As subclasses of this class are used in the resolver property of an
	// JsonIdentityInfo annotation, we cannot easily autowire components
	// (like the service for the current). For that reason, we use this
	// helper method to process the injection of the services
	SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
}
 
开发者ID:terrestris,项目名称:shogun2,代码行数:13,代码来源:PersistentObjectIdResolver.java

示例11: initAutowiredBeans

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
private void initAutowiredBeans() {
    SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
}
 
开发者ID:vitaly-chibrikov,项目名称:otus_java_2017_06,代码行数:4,代码来源:TimerServlet.java

示例12: DistributionTargetDeserializer

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
public DistributionTargetDeserializer() {
    this(null);
    SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
}
 
开发者ID:Taskana,项目名称:taskana,代码行数:5,代码来源:DistributionTargetDeserializer.java

示例13: parseWeixinClass

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
/**
 * 解析微信类
 * 
 * @param clazz
 * @throws ServletException
 * @throws MultiWeixinEncodingAESKeyException
 * @throws IllegalAccessException
 * @throws InstantiationException
 */
private void parseWeixinClass(Class<?> clazz) throws ServletException {
	Weixin wx = clazz.getAnnotation(Weixin.class);
	String url = wx.value();
	// 获取url对应的微信上下文,如果不存在,就新建一个
	WeixinContext context = contextMapper.get(url);
	if (context == null) {
		context = new WeixinContext();
		logger.debug("新建微信上下文(" + url + ")");
		contextMapper.put(url, context);
	}

	// 获取微信上下文的url,如果为空,则赋值
	if (StringUtil.isNull(context.getUrl())) {
		context.setUrl(url);
	}
	
	WeixinSetting setting = new WeixinSetting();
	setting.setUrl(url);
	setting.setAppID(wx.appID());
	setting.setAppSecret(wx.appSecret());
	setting.setEncodingAESKey(wx.encodingAESKey());
	setting.setToken(wx.token());
	
	//配置微信参数
	setContextParameter(context, setting);

	Object wxObj;
	try {
		// 生成微信对象实例
		wxObj = clazz.newInstance();
	} catch (InstantiationException | IllegalAccessException e) {
		throw new InitialWeixinConfigureException("实例化微信对象异常", e);
	}

	// 注入spring服务
	SpringBeanAutowiringSupport.processInjectionBasedOnServletContext(wxObj, getServletContext());

	Method[] methods = clazz.getDeclaredMethods();
	// 解析微信方法
	for (Method method : methods) {
		if (WeixinMethod.hasWeixinAnnotationType(method)) {
			logger.debug("解析微信上下文(" + url + ")微信方法:" + method.getName());
			parseWeixinMethod(context, method, wxObj);
		}
	}
}
 
开发者ID:jweixin,项目名称:jwx,代码行数:56,代码来源:WeixinDispatcherServlet.java

示例14: execute

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
@Override
public void execute(final JobExecutionContext jobExecutionContext) throws JobExecutionException {
    SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);

    try {

        logger.info("Beginning ticket cleanup.");
        logger.debug("Attempting to acquire ticket cleanup lock.");
        if (!this.jpaLockingStrategy.acquire()) {
            logger.info("Could not obtain lock.  Aborting cleanup.");
            return;
        }
        logger.debug("Acquired lock.  Proceeding with cleanup.");

        logger.info("Beginning ticket cleanup...");
        final Collection<Ticket> ticketsToRemove = Collections2.filter(this.getTickets(), new Predicate<Ticket>() {
            @Override
            public boolean apply(final Ticket ticket) {
                if (ticket.isExpired()) {
                    if (ticket instanceof TicketGrantingTicket) {
                        logger.debug("Cleaning up expired ticket-granting ticket [{}]", ticket.getId());
                        logoutManager.performLogout((TicketGrantingTicket) ticket);
                        deleteTicket(ticket.getId());
                    } else if (ticket instanceof ServiceTicket) {
                        logger.debug("Cleaning up expired service ticket [{}]", ticket.getId());
                        deleteTicket(ticket.getId());
                    } else {
                        logger.warn("Unknown ticket type [{} found to clean", ticket.getClass().getSimpleName());
                    }
                    return true;
                }
                return false;
            }
        });
        logger.info("{} expired tickets found and removed.", ticketsToRemove.size());
    } catch (final Exception e) {
        logger.error(e.getMessage(), e);
    } finally {
        logger.debug("Releasing ticket cleanup lock.");
        this.jpaLockingStrategy.release();
        logger.info("Finished ticket cleanup.");
    }

}
 
开发者ID:yuweijun,项目名称:cas-server-4.2.1,代码行数:45,代码来源:JpaTicketRegistry.java

示例15: ResendMessagesJob

import org.springframework.web.context.support.SpringBeanAutowiringSupport; //导入依赖的package包/类
public ResendMessagesJob() {
//First recover context of the job since it is created by Quartz, not Spring
SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
   }
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:5,代码来源:ResendMessagesJob.java


注:本文中的org.springframework.web.context.support.SpringBeanAutowiringSupport类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。