欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring Cloud 2.1 搭建Spring Cloud

程序员文章站 2022-07-14 22:33:31
...

1.开发环境:

1. JDK 1.8

2. IntelliJ IDEA 

2.开发步骤:

1. IDEA 中 新建Maven项目

2. pom.xml 添加依赖 spring-boot-starter-web

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

3.更新依赖包

项目 -- 右键 -- Maven -- Reimport

Spring Cloud 2.1 搭建Spring Cloud

4. 编写启动类

@SpringBootApplication
@ComponentScan
public class MyApplication {

	public static void main(String[] args) {
		SpringApplication.run(MyApplication.class, args);
	}

}

5. 启动 MyApplication.java 即启动了Spring Cloud 项目

Spring Cloud 2.1 搭建Spring Cloud

6. 验证

Spring Cloud 2.1 搭建Spring Cloud

3.源码:

项目源码路径:02/env-test

Spring Cloud 全部源码 百度云:https://pan.baidu.com/s/1pTQC-MXDAoHqv0BU79uyaw