springboot
Posted 今夕何夕。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot相关的知识,希望对你有一定的参考价值。
原文:https://www.cnblogs.com/moonlightL/p/7891803.html
一.application.properties
1.配置环境
在 src/main/resources 目录下创建三个配置文件:
application-dev.properties:用于开发环境
application-test.properties:用于测试环境
application-prod.properties:用于生产环境
我们可以在这个三个配置文件中设置不同的信息,application.properties 配置公共的信息。
2.
在 application.properties 中配置:
spring.profiles.active=dev(test,prod) 激活dev
(test,prod)
环境
以上是关于springboot的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段
Spring boot:thymeleaf 没有正确渲染片段