码迷,mamicode.com
首页 > 编程语言 > 详细

Springboot中如何设置不同的开发环境

时间:2020-05-23 13:14:29      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:访问   objects   world   request   stc   stat   oid   mic   return   

通过不同的application-*.yml设置不同的开发环境

当我们需要哪个配置环境时,只需要在application.properties中指定即可,如下图所示:

技术图片

 

如下测试:

@RestController
public class IndexController{
    @RequestMapping("/index")
    public String index() {
        return "hello world";
    }
}
@SpringBootApplication
public class DiffEnvAppilcation extends ApplicationObjectSupport {
    public static void main(String[] args) {
        SpringApplication.run(DiffEnvAppilcation.class, args);
    }
}

在application.properties中指定的是application-sit.yml

所以访问地址为: http://localhost:8081/index

 技术图片

 

 此时,我们把spring.profiles.active=test

这时候的访问地址为:http://localhost:8080/index

技术图片

 

Springboot中如何设置不同的开发环境

标签:访问   objects   world   request   stc   stat   oid   mic   return   

原文地址:https://www.cnblogs.com/weishao-lsv/p/12942025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!