springboot的Configuration使用

1、定义

springboot推荐使用用java代码的形式申明注册bean。 
@Configuration注解可以用java代码的形式实现spring中xml配置文件配置的效果。

2、通过java代码注册bean

@Configuration
public class TestMybaitsConf {

    @Bean
    public DataSource dataSource() {
        ComboPooledDataSource dataSource = new ComboPooledDataSource();
        try {
            dataSource.setDriverClass("com.mysql.jdbc.Driver");
            dataSource.setJdbcUrl("jdbc:mysql://192.168.100.25:6660/TXSMS?useUnicode=true&characterEncoding=utf-8");
            dataSource.setUser("root");
            dataSource.setPassword("123456");
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
        return dataSource;
    }

    @Bean
    public SqlSessionFactory sqlSessionFactory(DataSource dataSource) {
        SqlSessionFactory factory = null;
        SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
        bean.setDataSource(dataSource);
        ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
        bean.setConfigLocation(resolver.getResource("classpath:mybatis.xml"));
        try {
            factory = bean.getObject();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
        return factory;
    }

    @Bean
    public SqlSessionTemplate sqlSessionTemplate(SqlSessionFactory sqlSessionFactory) {
        return new SqlSessionTemplate(sqlSessionFactory);
    }

    @Bean
    public PlatformTransactionManager transactionManager(DataSource dataSource) {
        return new DataSourceTransactionManager(dataSource);
    }
}


3、使用xml注册bean

@Configuration
@ImportResource("classpath:spring-mybatis.xml")
public class TestMybaitsConf {

}

spring-mybatis.xml :




    
        
        
        
        
    

    
        
        
    

    
        
    

    
        
    

    


4、总结


2、3两种注册bean的效果完全一样,但springboot推荐使用2中的方式,使用java代码注册bean。

5.项目中的示例:

@Configuration
public class EventBusConfig {

    @Bean
    public EventBus eventBus() {
        return new AsyncEventBus(new ThreadPoolExecutor(5, 5,
                0, TimeUnit.MILLISECONDS, new ArrayBlockingQueue<>(1024),
                new ThreadFactoryBuilder().setNameFormat("content-updated-event-%d").build()));
    }

    @Resource
    private ApplicationContext applicationContext;

    @PostConstruct
    public void registerEventListener() {
        Map beans = applicationContext.getBeansOfType(Subscribed.class);
        beans.forEach((key, value) -> this.eventBus().register(value));
    }

}

这里创建一个eventBus的bean,并且在项目启动的时候,就拿到所有的是Subscribed类型的类注册到eventBus上


参考文档:https://blog.csdn.net/sz85850597/article/details/79133242 
 

你可能感兴趣的:(springboot)