Java tutorial
/* * Copyright (c) 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.chimpler.example; import javax.annotation.PostConstruct; import javax.inject.Inject; import javax.inject.Singleton; import javax.servlet.ServletContext; import org.cometd.annotation.ServerAnnotationProcessor; import org.cometd.bayeux.server.BayeuxServer; import org.cometd.server.BayeuxServerImpl; import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.DestructionAwareBeanPostProcessor; import org.springframework.context.annotation.Bean; import org.springframework.stereotype.Component; import org.springframework.web.context.ServletContextAware; @Component @Singleton public class CometConfigurer implements DestructionAwareBeanPostProcessor, ServletContextAware { private BayeuxServer bayeuxServer; private ServerAnnotationProcessor processor; @Inject public void setBayeuxServer(BayeuxServer bayeuxServer) { this.bayeuxServer = bayeuxServer; } @PostConstruct public void init() { this.processor = new ServerAnnotationProcessor(bayeuxServer); } public Object postProcessBeforeInitialization(Object bean, String name) throws BeansException { System.out.println("Configuring service " + name); processor.processDependencies(bean); processor.processConfigurations(bean); processor.processCallbacks(bean); return bean; } public Object postProcessAfterInitialization(Object bean, String name) throws BeansException { return bean; } public void postProcessBeforeDestruction(Object bean, String name) throws BeansException { processor.deprocessCallbacks(bean); } @Bean(initMethod = "start", destroyMethod = "stop") public BayeuxServer bayeuxServer() { BayeuxServerImpl bean = new BayeuxServerImpl(); bean.setOption(BayeuxServerImpl.LOG_LEVEL, "3"); return bean; } public void setServletContext(ServletContext servletContext) { servletContext.setAttribute(BayeuxServer.ATTRIBUTE, bayeuxServer); } }