springboot配置全系列

基础配置

maven的springboot插件(spring-boot-maven-plugin)

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <!--当使用springboot构建服务,则该配置可省略-->
    <version>2.1.4.RELEASE</version>
    <configuration>
        <archive>
            <manifest>
                <mainClass>com.example.demo.DemoSpringApplication</mainClass>
            </manifest>
        </archive>
    </configuration>
</plugin>

maven的profile方式

springboot的profile使用方式

开发模式配置

配置tomcat

配置web相关

配置日志

配置JSP

配置数据源

集成配置

集成druid

集成mybatis

集成Freemarker

集成redis

集成dubbo

集成zookeeper

集成rocketmq

原文地址:https://www.cnblogs.com/weiguangyue/p/12348757.html