您好,此次pr,增加2处配置,分别是:

1、 spring profiles 配置,用于区分 开发环境和生产环境 ;具体变化如下:
`增加 application.properties 配置文件,用于管理对应开发环境;

    spring.profiles.active=druid 设定为 开发环境
    spring.profiles.active=druid-pro 设定为 生产环境

`

2、 druid 配置,实现生成环境 数据库密码加密,具体如下:

  增加 application-druid-pro.yml 配置文件,存储生产环境配置;
    spring.datasource.druid.filters=config;
    spring.datasource.druid.connectionProperties=config.decrypt=true;config.decrypt.key=xxx
 设定启用druid数据库加密; 具体可[参考这里](https://segmentfault.com/a/1190000019260887)
 

以上,请予以审核,谢谢!