springboot中文文檔
https://my.oschina.net/geekidentity/blog/872888java
這裏不過多的介紹springboot,直接上步驟,創建一個簡單的springboor項目。
工具:
idea(2016.3.4)
jdk(1.8)
maven(3.3.9) git(2.5)
#1.基礎工具準備
1.下載安裝jdk1.8,百度解決
2.下載maven,配置本地倉庫,個人以下
3.下載安裝git,這個不是必要,所以後續不介紹這裏。
4.下載安裝idea。
#2.基礎環境配置
打開idea,
1.配置jdk
File-->Project Structure-->Project,而後設置jdk版本。
2.配置maven
File-->Setting,設置以下圖
3.配置git
#3.工程搭建
我是採用maven module的形式建立工程,每一個module打成jar包或者war包。
打開idea,
1.建立工程
File-->New-->Project-->左側Maven選項,以下圖
2.建立父級module
File-->New-->Module-->左側Maven選項,以下圖
父級module主要是提供jar包,全部的jar包、maven插件均配置在這裏,其它module所須要的jar包、插件均引用這裏。以下圖
父級pom的配置文件見最下面。
3.建立業務module
通建立父級module步驟同樣,只是pom.xml文件配置不一樣,以下圖
pom配置見最下面。
4.下載maven插件
見下圖,
5.啓動方式
5.1 main方法啓動,Application設置以下
5.2 war包啓動
6.啓動與請求
#4.結尾
1.cms-project的pom文件git
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>cms.test</groupId> <artifactId>cms-project</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <modules> <module>cms-parent</module> <module>cms-api</module> </modules> </project>
2.cms-parent的pom文件web
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>cms-parent</artifactId> <groupId>cms.test</groupId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>cms-parent</name> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.2.RELEASE</version> </parent> <properties> <spring-boot.version>1.5.2.RELEASE</spring-boot.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>${spring-boot.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring-boot.version}</version> </plugin> </plugins> </pluginManagement> </build> </project>
3.cms-api的pom文件spring
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>cms-parent</artifactId> <groupId>cms.test</groupId> <version>1.0-SNAPSHOT</version> <relativePath>../cms-parent</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cms-api</artifactId> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <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>
#5.簡要講解
1.@SpringBootApplication註解
該註解開啓了Spring組件掃描和自動配置功能,他將以下三個註解組合在一塊兒。
1.1spring的@Configuration註解:它是用來管理bean的,等價於xml中配置beans;@Bean標註方法等價於xml中配置bean。以下等價
xml配置apache
<beans> <bean id="class2" class="com.test.Class2"></bean> <bean id="class3" class="com.test.Class3"></bean> </beans>
註解配置以下api
@Configuration public class Class1 { @Bean public Class2 class2(){ return new Class2(); } @Bean public Class3 class3(){ return new Class3(); } }
1.2spring的@ComponentScan註解:掃描註解,以下等價
xml配置springboot
<context:component-scan base-package="com.test">
註解以下maven
@ComponentScan("com.test")
1.3spring的@EnableAutoConfiguration註解:根據classpath自動載入應用程序所需的全部Bean。ide