赞
踩
现在软件市场已经形成一定的规模,系统架构的复杂度也越来越高(例如有单体架构,分布式架构,微服务架构)。软件的整个架构体系正在发生很大变化,在这种变化中,企业现在更注重技术的开箱即用,更注重技术在生态圈中的深度融合,更注重轻量级的运维。由此spring boot诞生。
Spring boot是一个脚手架,构建于Spring框架(Framework)基础之上,基于快速构建理念,提供了自动配置功能,可实现其开箱即用特性(创建完一个基本的项目以后,可零配置或者少量配置即可运行我们的项目),其核心主要有如下几个方面:
其中,Spring Boot官方地址为https://spring.io/projects/spring-boot。
建议:将下载的所有文件存储到同一目录并解压,例如d:/TCGBIII/TOOLS目录。要求目录不要有中文,也不要有特殊符号(例如&等)。
打开maven中的setting.xml文件,并对其如下选项进行配置。
<localRepository>${user.home}/.m5/repository</localRepository>
- <mirror>
- <id>aliyun</id>
- <name>aliyun for maven</name>
- <mirrorOf>*</mirrorOf>
- <url>https://maven.aliyun.com/repository/public</url>
- </mirror>
- <profile>
- <id>jdk-1.8</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- <jdk>1.8</jdk>
- </activation>
- <properties>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <maven.compiler.compilerVersion>
- 1.8
- </maven.compiler.compilerVersion>
- </properties>
- </profile>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。