spring boot学习系列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot学习系列相关的知识,希望对你有一定的参考价值。

spring boot多环境配置以及yml配置文件


1、平时项目中,我们可能需要到配置生产环境,测试环境,以及开发环境


2、那么每次在项目发布的时候,可能都需要改一下配置文件,修改一些路径才可以。


3、接下来讲一下spring boot的多环境配置,以及yml配置文件。


4、基于上一个demo项目。我们打开一下application.properties文件


技术分享


5、可以看到里面是空的,什么都没有


6、我们修改一下端口号,添加 

server.port=8088

  

技术分享

然后我们启动访问一下,端口修改成功。


7、那么我们以该端口为例子。

生产环境改为80,测试环境为8088,开发环境为8080


新建三个文件为:

技术分享


8、然后编写一下里面的内容。


application.properties内容:


spring.profiles.active=dev

这里的dev标志着环境为application-dev



application-dev.properties开发环境内容:

server.port=8080

mybatis.type-aliases-package=com.example.demo.entity

spring.datasource.driverClassName = com.mysql.jdbc.Driver
spring.datasource.url = jdbc:mysql://localhost:3306/springboot?useUnicode=true&characterEncoding=utf-8
spring.datasource.username = root
spring.datasource.password = 123456

除了端口号之外,另外添加数据库访问地址。



application-pro.properties生产环境内容:

server.port=80

mybatis.type-aliases-package=com.example.demo.entity

spring.datasource.driverClassName = com.mysql.jdbc.Driver
spring.datasource.url = jdbc:mysql://localhost:3306/springboot?useUnicode=true&characterEncoding=utf-8
spring.datasource.username = root
spring.datasource.password = 123456


application-test.yml测试环境内容:

server:
  port: 8088

mybatis:
  type-aliases-package: com.example.demo.entity

spring:
  datasource:
    driverClassName: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/springboot?useUnicode=true&characterEncoding=utf-8
    username: root
    password: 123456


yml内容相比properties是不是看得更舒服和顺眼呢。


仔细看一下数据结构,你大概就能知道yml和properties的区别了,其实读取出来的数据是相同的。只是格式不太一样


9、配置差不多就这样了。我们试着跑一下看看效果。

1)

首先启动dev环境:

看一下application.properties文件里配的是啥环境

技术分享

启动一下看看使用dev后,端口号是多少。

技术分享

嗯,8080端口,没毛病。


2)

在修改一下application.properties文件中为pro再启动试试。

技术分享

重启访问一下80端口试试


技术分享


嗯,好像也没毛病。访问8080看看还能不能访问呢。


技术分享

8080端口访问不了咯。那就安心了。


3)

最后在修改一下application.properties文件中为test。

技术分享

启动访问一下看看。

技术分享


嗯,好像也没毛病。


差不多了,就这样,下一篇讲spring boot整合mybatis。


台风快来了,别被刮走了呀。


技术分享










本文出自 “青葱岁月” 博客,请务必保留此出处http://alex233.blog.51cto.com/8904951/1934640

以上是关于spring boot学习系列的主要内容,如果未能解决你的问题,请参考以下文章

spring boot学习系列

个人学习系列 - Spring Boot 实现线程池

activemq 学习系列 activemq 与 spring boot 整合

spring boot 系列学习记录

spring boot 官方文档怎么学习

Spring Boot 教程系列学习