springboot

Posted gendway

tags:

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

1、
<properties>
    <spring-boot.version>2.0.5.RELEASE</spring-boot.version>
<dubbo.version>0.2.0</dubbo.version>
</properties>

<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>com.alibaba.boot</groupId>
<artifactId>dubbo-spring-boot-actuator</artifactId>
<version>${dubbo.version}</version>
</dependency>

2、
<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.5.RELEASE</version>
</parent>

<dependencies>
    <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

 

以上是关于springboot的主要内容,如果未能解决你的问题,请参考以下文章

SpringBootSpringBoot 自动配置原理

SpringbootSpringBoot基础知识及整合Thymeleaf模板引擎

SpringBootSpringBoot 缓存(十八)

SpringBootSpringBoot web开发

SpringBootSpringBoot Web开发

SpringBootSpringBoot 整合RabbitMQ(二十)