美文网首页初见
常用 springboot dependencies 积累

常用 springboot dependencies 积累

作者: 帅帅的大同人 | 来源:发表于2020-06-12 10:27 被阅读0次

<dependencies>

        <!--封装Starter核心依赖  -->

        <dependency>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-autoconfigure</artifactId>

            <version>2.1.3.RELEASE</version>

        </dependency>

        <!--非必需,该依赖作用是在使用IDEA编写配置文件有代码提示-->

        <dependency>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-configuration-processor</artifactId>

            <version>2.1.3.RELEASE</version>

        </dependency>

        <!-- lombok 插件  -->

        <dependency>

            <groupId>org.projectlombok</groupId>

            <artifactId>lombok</artifactId>

            <version>1.18.6</version>

            <optional>true</optional>

        </dependency>

        <!-- 因为要使用RestTemplate和转换Json,所以引入这两个依赖 -->

        <dependency>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-starter-web</artifactId>

            <version>2.1.3.RELEASE</version>

        </dependency>

        <dependency>

            <groupId>com.alibaba</groupId>

            <artifactId>fastjson</artifactId>

            <version>1.2.45</version>

        </dependency>

</dependencies>

相关文章

网友评论

    本文标题:常用 springboot dependencies 积累

    本文链接:https://www.haomeiwen.com/subject/crhgtktx.html