解答
JavaConfig是Spring3.0新增的概念,就是以注解的形式取代Spring中繁琐的xml文件。
JavaConfig结合了xml的解耦和java编译时检查的优点。
1.@Configuration,表示这个类是配置类;
2.@ComponentScan,相当于xml的<context:componentScan basepackage=>;
3.@Bean,相当于xml的<bean id="student" class="com.guor.entity">;
4.@EnableWebMvc,相当于xml的<mvc:annotation-driven>;
5.@ImportResource,相当于xml的<import resource="application-context-cache.xml">;
6.@PropertySource,用于读取properties配置文件;
7.@Profile,一般用于多环境配置,激活时可用@ActiveProfile("dev")注解;
帖子还没人回复快来抢沙发