2020
10-24
10-24
详解springboot的多种配置方式
java配置主要靠java类和一些注解,比较常用的注解有:@Configuration:声明一个类作为配置类,代替xml文件@Bean:声明在方法上,将方法的返回值加入Bean容器,代替标签@Value:基本类型或String属性注入@PropertySource:指定外部属性文件后面以Druid连接池配置为例,数据库名称为springboot_test方式一<!--pom.xml--><dependency><groupId>com.alibaba</groupId><artifactId>druid</artifactId><version>1.1.6</...
继续阅读 >