pm依賴web
spring-boot-starter:Spring Boot核心Starter,包含自動配置、日誌、yaml配置文件的支持
spring-boot-starter-amqb:使用spring-rabbit來支持AMQP
spring-boot-starter-web:支持全棧web開發,裏面包括了Tomcat和Spring-webmvc。
spring-boot-starter-data-jpa:對JPA的支持,包含spring-data-jpa、spring-orm和Hibernate
spring-boot-starter-thymeleaf:對Thymeleaf模版引擎的支持,包含於Spring整合的配置
spring-boot-starter-ws: 提供對Spring Web Services的支持
spring-boot-starter-cloud-connectors:對雲平臺(Cloud Foundry、Heroku)提供的服務簡化鏈接方式
spring-boot-starter-test:提供對經常使用測試框架的支持,包括JUnit,Hamcrest以及Mockito等。
spring-boot-starter-actuator:支持產品環境下的一些功能,好比管理應用、指標度量及監控等。
spring-boot-starter-jetty:支持jetty容器。
spring-boot-starter-log4j:引入默認的log框架(logback)spring
開發標準web項目,pom文件配置以下apache
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- spring boot基本環境 -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.1.RELEASE</version>
</parent>
<groupId>spring.boot</groupId>
<artifactId>cloud-simple-helloword</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>
<name>cloud-simple-helloword</name>
<dependencies>
<!--web應用基本環境配置 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>mvc
編寫你的用戶請求入口類,即咱們寫的controller類負載均衡
須要加上註解生效 @RestController框架
啓動執行器註解@SpringBootApplication 集成了@Configuration、@EnableAutoConfiguration、@EnableWebMvc、@ComponentScan四個註解的功能。maven
spring cloud pom依賴spring-boot