详解Idea SpringBoot搭建SpringCloud的准备工作(推荐)

时间:2021-05-19

1、编码设置

2、开启注解(让注解生效)

3、本项目编译运行版本

4、把不需要的文件隐藏(注意可以不用做,做了可以让项目看起来更加整洁干净清晰明了)

以上就是搭建一个SpringCloud之前的步骤。

二、SpringCloud父工程的依赖

<groupId>org.example</groupId> <artifactId>spring-cloud</artifactId> <version>1.0-SNAPSHOT</version><!-- 注意一定要改成pom--> <packaging>pom</packaging><!--这是一个子工程--> <modules> <module>cloud-provider-payment8001</module> </modules> <!-- 统一管理jar包版本--> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target><!-- 单元测试的--> <junit.version>4.13</junit.version> <log4j.version>1.2.17</log4j.version> <lombok.version>1.18.12</lombok.version> <mysql.version>8.0.21</mysql.version><!-- 这是德鲁伊的(数据库连接池)--> <druid.version>1.1.16</druid.version> <mybatis.spring.boot.version>2.1.3</mybatis.spring.boot.version><!-- 截至2020/10/1日之前根据官方文档cloud 的版本Hoxton.SR8 和spring boot的2.3.3.RELEASE最配--> <spring.cloud-version>Hoxton.SR8</spring.cloud-version> <spring.boot-version>2.3.3.RELEASE</spring.boot-version> </properties><!-- 提供统一版本作为版本锁定 子工程就不用写 groupId和versiondependencyManagement只是管理版本号(父项目和子项目统一版本号),真正干活有用的还是dependencies--><dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring.cloud-version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring.boot-version}</version> <type>pom</type> <scope>import</scope> </dependency> <!-- spring-cloud 阿里巴巴版 --> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>2.1.0.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> <!-- junit单元测试 --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <!-- 日志打印log4j --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>${log4j.version}</version> </dependency> <!-- MySQL的jar --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>5.2.9.RELEASE</version> </dependency> <!-- 德鲁伊数据库连接池--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>${druid.version}</version> </dependency> <!-- mybatis和springboot的组合 --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>${mybatis.spring.boot.version}</version> </dependency> </dependencies></dependencyManagement>

到此这篇关于Idea SpringBoot搭建SpringCloud的准备工作的文章就介绍到这了,更多相关idea搭建springcloud内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章