1. 程式人生 > >Spring Cloud 2.1 搭建Spring Cloud

Spring Cloud 2.1 搭建Spring Cloud

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

4. 編寫啟動類

@SpringBootApplication
@ComponentScan
public class MyApplication {

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

}

5. 啟動 MyApplication.java 即啟動了Spring Cloud 專案

6. 驗證

3.原始碼:

專案原始碼路徑:02/env-test