当前位置:   article > 正文

Spring创建Bean的6种方式_springboot 批量bean

springboot 批量bean

Spring创建Bean的6种方式

方式一 xml

xml

方式二 @Component

@Component
@Service
@Controller
@Repository
...
  • 1
  • 2
  • 3
  • 4
  • 5

不多说明

方式三 @Bean

@Bean
  • 1
@Configuration
public class RedisConfig {
   
    @Bean
    public RedisUtil redisUtil(RedisTemplate<String, Object> redisTemplate) {
   
        RedisUtil redisUtil = new RedisUtil();
        redisUtil.setRedisTemplate(redisTemplate);
        return redisUtil;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/241613
推荐阅读
相关标签
  

闽ICP备14008679号