package com.kwan.spring5.config; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; /** * 作为配置类,替代 xml 配置文件 * * @author : qinyingjie * @version : 2.2.0 * @date : 2022/11/14 23:10 */ @Configuration @ComponentScan(basePackages = {"com.kwan"}) public class SpringConfig { }