春季-使用不带@Configuration批注的@EnableWebMvc有什么影响?

时间:2018-06-26 19:12:18

标签: java spring spring-mvc

在春季,如果不像下面的示例那样仅将@EnableWebMvc@Configuration一起使用,而会与@EnableWebMvc一起使用怎么办?

使用@Configuration

@Configuration
@EnableWebMvc
public class Clazz {
    // ..
}

没有@Configuration

@EnableWebMvc
public class Clazz {
    // ..
}

1 个答案:

答案 0 :(得分:1)

@EnableWebMvc本身不能做很多事情,除非它被Spring发现。 Spring搜索标记为@Component的类。 @Configuration被标记为@Component,因此所有被标记为@Configuration的类被Spring组件扫描发现的方式与被标记为@Component的类相同。只有标记了@EnableWebMvc或标记为@Component的任何注释时,才会发现标记为@Component的类