Follow Springcloud a set of video learning Springcloud, to learn the record down, convenient for themselves, convenient for others
Ide:idea
One parent project, others are module
Dependency of the Parent project:
<parent> <groupId>org.springframework.boot</groupId> <artifactid>spring-boot-starter -parent</artifactid> <version>1.5.2. release</version> </parent> <properties> <java.version>1.8</java.version> <project.build.sourceencoding>utf-8</project.build.sourceEncoding> <project.reporting.outputencoding>utf-8</project.reporting.outputEncoding> </properties> <dependencyManagement> <DEPENDENCIES&G T <dependency> <groupId>org.springframework.cloud</groupId> <ARTIFACTID&G T;spring-cloud-dependencies</artifactid> <version>Dalston.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> < /dependencies> </dependencyManagement>
The parent project of the <dependecyManagerment> management of Springboot dependency, later module can not be used, it seems to Maven is not too understanding, but also drunk
springcloude-00-Introduction