ShopApplicationConfiguration.java

15 lines | 500 B Blame History Raw Download
package com.salesmanager.shop.application;

import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;

@Configuration
@EnableWebMvc
@EnableAutoConfiguration
@ImportResource({"spring/shopizer-shop-context.xml","spring/shopizer-core-context.xml"})
public class ShopApplicationConfiguration {

}