All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.icthh.xm.commons.request.spring.config.XmRequestContextConfiguration Maven / Gradle / Ivy

There is a newer version: 4.0.12
Show newest version
package com.icthh.xm.commons.request.spring.config;

import com.icthh.xm.commons.request.XmRequestContextHolder;
import com.icthh.xm.commons.request.internal.PrototypeXmRequestContextHolder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * The {@link XmRequestContextConfiguration} class.
 */
@Configuration
public class XmRequestContextConfiguration {

    @Bean
    XmRequestContextHolder requestContextHolder() {
        return new PrototypeXmRequestContextHolder();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy