首页 > 代码库 > Springboot快速入门创建

Springboot快速入门创建

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工程就已经创建好了。

Springboot快速入门创建