什么是JavaConfig?
发布网友
发布时间:2022-04-27 11:16
我来回答
共5个回答
热心网友
时间:2023-09-14 19:41
java config是指基于java配置的spring。传统的Spring一般都是基本xml配置的,后来spring3.0新增了许多java config的注解,特别是spring boot,基本都是清一色的java config。
@Configuration
在类上打上这一标签,表示这个类是配置类
@ComponentScan
相当于xml的<context:componentscan basepakage=>
@Bean
bean的定义,相当于xml的
<bean id="objectMapper" class="org.codehaus.jackson.map.ObjectMapper" />
@EnableWebMvc
相当于xml的<mvc:annotation-driven>
@ImportResource
相当于xml的 <import resource="applicationContext-cache.xml">
@PropertySource
spring 3.1开始引入,它是基于java config的注解,用于读取properties文件
@Profile
spring3.1开始引入,一般用于多环境配置,激活时可用@ActiveProfiles注解,@ActiveProfiles("dev")
等同于xml配置
<beans profile="dev">
<bean id="beanname" class="com.pz.demo.ProctRPC"/>
</beans>
激活该profile spring.profiles.active,也可设置默认值 spring.profiles.default
<context-param>
<param-name>spring.profiles.default</param-name>
<param-value>dev</param-value>
</context-param>
热心网友
时间:2023-09-14 19:42
“Spring
JavaConfig 是 Spring 社区的产品,它提供了配置 Spring IoC 容器的纯 Java 方法。因此它有助于避免使用 XML
配置。使用 JavaConfig 的优点在于:面向对象的配置。由于配置被定义为 JavaConfig 中的类,因此用户可以充分...”
热心网友
时间:2023-09-14 19:42
java config是指基于java配置的spring。传统的Spring一般都是基本xml配置的,后来spring3.0新增了许多java config的注解,特别是spring boot,基本都是清一色的java config
热心网友
时间:2023-09-14 19:43
java是目前程序设计后台开发用的最广的开发语言。
热心网友
时间:2023-09-14 19:44
JavaConfig就是使用注释来描述Bean配置的组件。JavaConfig 是Spring的一个子项目, 比起Spring,它还是一个非常年青的项目。目前的版本是1.0 M2。使用XML来配置Bean所能实现的功能,通过JavaConfig同样可以很好的实现