Package com.netflix.hystrix.contrib.javanica.test.spring.conf

Source Code of com.netflix.hystrix.contrib.javanica.test.spring.conf.SpringApplicationContext

package com.netflix.hystrix.contrib.javanica.test.spring.conf;

import com.netflix.hystrix.contrib.javanica.aop.aspectj.HystrixCommandAspect;
import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;

@Configurable
@ComponentScan("com.netflix.hystrix.contrib.javanica.test.spring")
public class SpringApplicationContext {

    @Bean
    public HystrixCommandAspect hystrixAspect() {
        return new HystrixCommandAspect();
    }

}
TOP

Related Classes of com.netflix.hystrix.contrib.javanica.test.spring.conf.SpringApplicationContext

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.