SpringBoot-配置Java方式
SpringBoot中使用Java方式配置步骤如下:
-
在类上加入@Configuration注解,代表作为配置类
-
在该类方法上加入@Bean注解,代表将方法返回的Bean加入Spring容器
-
在该类中使用@Value将配置文件中属性注入
-
使用@PropertySource注解指定外部文件
实例代码:DataSource类
packagecn.rayfoo.config;
importcom.alibaba.druid.pool.DruidDataSource;
importlombok.Data;
importlombok.ToString;
importorg.springframework.beans.factory.annotation.Value;
importorg.springframework.context.annotation.Bean;
importorg.springframework.context.annotation.Configuration;
importorg.springframework.context.annotation.PropertySource;
importjavax.sql.DataSource;
/**
* @author 张瑞丰
* @description
* @date 2019/11/4
*/