SpringBoot——基础配置
Posted 6。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot——基础配置相关的知识,希望对你有一定的参考价值。
目录
@
Tomcat配置
在Springboot项目中,可以内置tomcat、netty等容器。当添加了spring-boot-stater-web依赖之后,默认使用tomcat作为web容器。如果需要对tomcat进一步配置,可以在application.properties中进行配置。
server.port=8080 //web容器端口号
server.error.path=/error //当前项目出错的时候跳转页面
server.servlet.session.timeout=30m //配置了session的实效时间,m为分钟单位,默认单位为s
server.servlet.context-path=/index //项目名称,默认为/
server.tomcat.uri-encoding=utf-8 // tomcat请求编码
server.tomcat.max-threads=500 // tomcat最大线程数
server.tomcat.basedir=/home/sang/tmp //tomcat运行日志和临时文件的存放目录
profile
在项目开发的时候,一般需要频繁的切换开发环境、测试环境和生产环境。springboot中约定不用环境下的配置文件名称规则为 application-{profile}.properties,profile占位符表示当前环境的名称。
例如:
application-dev.properties
server.port=8080
apllication-test.properties
server.port=8081
application-pro.properties
server.port=8082
再多环境下使用相应的配置环境方法 :
在application.properties中进行配置
spring.profile.active=dev
我们也可以在代码中进行配置。
只需要在启动类的main方法上添加:
SpringApplicationBuilder buider = new SpringApplicationBuilder(当前类.class);
builder.application().setAdditionalProfiles("dev");
builder.run(args);
以上是关于SpringBoot——基础配置的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot启动报错“Consider defining a bean of type ‘xxx.mapper.UserMapper‘ in your configuration.“(代码片段
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段
项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段