什么是Spring中的JavaConfig?
作者:互联网
我只是试着理解注释@Bean的含义和用法,我遇到了一个叫做JavaConfig in this文档的单词(2.2.1.chapter).背景如下:
To declare a bean, simply annotate a method with the @Bean annotation. When JavaConfig encounters such a method, it will execute that method and register(…)
我不明白什么是JavaConfig是Spring …
它究竟起作用了什么?
什么时候运行?
为什么要跑?
我也看到了this documentation,但没有让我更接近理解它.
解决方法:
它指的是基于注释的配置,而不是旧的原始基于XML的配置.
实际的JavaConfig组件是通过类文件和注释来构建配置的组件(而不是通过XML文件来构建配置).
标签:java,spring-mvc,spring,spring-java-config 来源: https://codeday.me/bug/20190715/1464947.html