摘要:
1. 使用@Configuration标记一个配置类 @Configuration public class JavaConfig { @Bean public User user(){ return new User(); } } @Configuration的本质就是一个@Compontent( 阅读全文
摘要:
1. 想要使用spring的注解进行开发,需要先在配置文件中导入依赖。 想要使用component组件及其衍生的组件进行开发,则需要在配置文件中添加component扫描路径。 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://w 阅读全文
摘要:
1. 导入注解依赖并开启支持注解; <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/ 阅读全文