@Configuration
@ComponentScan({"pck01"})
@PropertySource("db.properties")
public class springConfig {
}

@Test
public void test2(){
AnnotationConfigApplicationContext annotationConfigApplicationContext=new AnnotationConfigApplicationContext(springConfig.class);
}
为什么报错db这个文件不存在
