标签:framework 构建 switch 版本 解压 参考 下载 spring src
maven构建项目
1、访问http://start.spring.io/,进入快速创建工程的主页
可参考下图所示:
2、选择构建工具Maven Project、Spring Boot版本1.3.6以及一些工程基本信息,点击“Switch to the full version.” 可以看到更多选项信息。
如下图所示,根据实际情况配置的maven项目信息。
3、点击Generate Project下载项目压缩包
4、解压后,使用eclipse,Import -> Existing Maven Projects -> Next ->选择解压后的文件夹-> Finsh,OK done!
引入web模块
1、pom.xml中添加支持web的模块
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
至此一个简单基本的springboot web工程就已经创建好了。
标签:framework 构建 switch 版本 解压 参考 下载 spring src
原文地址:http://www.cnblogs.com/michaelShao/p/6003198.html