博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot系列二:搭建自己的第一个SpringBoot程序
阅读量:6305 次
发布时间:2019-06-22

本文共 2633 字,大约阅读时间需要 8 分钟。

声明:本文来源于MLDN培训视频的课堂笔记,写在这里只是为了方便查阅。

一、根据官网手工搭建(http://projects.spring.io/spring-boot/#quick-start)

1、新建一个maven工程springbootfirst

2、 如果要想开发 SpringBoot 程序只需要按照官方给出的要求配置一个父 pom (spring-boot-starter-parent)和添加web开发的支持(spring-boot-starter-web)即可。

1 
3
4.0.0
4 5
com.study.springboot
6
springbootfirst
7
0.0.1-SNAPSHOT
8
jar
9 10
springbootfirst
11
http://maven.apache.org
12 13
14
UTF-8
15
1.8
16
17 18
19
20
org.springframework.boot
21
spring-boot-starter-parent
22
1.5.4.RELEASE
23
24 25
26 27
28
29
org.springframework.boot
30
spring-boot-starter-web
31
32 33
34 35 36
37
springbootfirst
38
39
40
org.apache.maven.plugins
41
maven-compiler-plugin
42
43
${jdk.version}
44
${jdk.version}
45
${project.build.sourceEncoding}
46
47
48
49
50 51

3、 编写一个具体的程序SampleController.java

1 package com.study.springboot.springbootfirst; 2  3 import org.springframework.boot.*; 4 import org.springframework.boot.autoconfigure.*; 5 import org.springframework.stereotype.*; 6 import org.springframework.web.bind.annotation.*; 7  8 @Controller 9 @EnableAutoConfiguration10 public class SampleController {11 12     @RequestMapping("/")13     @ResponseBody14     String home() {15         return "Hello World!";16     }17 18     public static void main(String[] args) throws Exception {19         SpringApplication.run(SampleController.class, args);20     }21 }

4.启动SampleController.java,在浏览器输入http://localhost:8080/即可看到我们使用SpringBoot搭建的第一个web程序成功了,就是这么的快速、简单、方便

二、快速搭建

1、访问http://start.spring.io/

2、选择构建工具Maven Project、Spring Boot版本1.5.11以及一些工程基本信息,点击“”java版本选择1.8,可参考下图所示:

 

3、点击Generate Project下载项目压缩包

4、解压后,使用eclipse,Import -> Existing Maven Projects -> Next ->选择解压后的文件夹-> Finsh,OK done!

 

转载于:https://www.cnblogs.com/leeSmall/p/8654143.html

你可能感兴趣的文章
关于 Flume NG
查看>>
北电交换机常用配置
查看>>
Linux磁盘及文件系统管理
查看>>
Linux系统下Apache日志文件设置、更改默认网站目录、防止php***跨站设置、禁止空主机头...
查看>>
shell判断文件是否存在
查看>>
EXCHANGE事务日志和邮箱数据库的存储位置
查看>>
oracle conn /as sysdba后显示 乱码”???“
查看>>
(三)把域服务升级和迁移到Windows Server 2012 R2上
查看>>
动态主机配置协议:DHCP简介
查看>>
跟我学Spring Cloud(Finchley版)-05-服务注册与服务发现-Eureka入门
查看>>
VisualStudio不让控制台程序一闪而过
查看>>
交换机配置
查看>>
python读取excel表格的数据
查看>>
折半查找
查看>>
写给创始人的期权问答及实操白皮书(连载一)
查看>>
jenkins集成sonarqube
查看>>
snort 中的Boyer-Moore
查看>>
ip_append_data
查看>>
百度云
查看>>
py Image模块的介绍
查看>>