SpringBoot 系列-2 SpringBoot demo

spring官方提供一个demo 

https://start.spring.io/

SpringBoot 系列-2 SpringBoot demo_第1张图片

可以选择你的构建工具、版本、Group、Artifact 等信息。 点击generate之后会下载一个zip包。

本文以eclipse 和  maven 作为工作, 导入zip后目录如下

SpringBoot 系列-2 SpringBoot demo_第2张图片 

可以右键 运行 DemoApplication

SpringBoot 系列-2 SpringBoot demo_第3张图片

如果你的项目是web应用 ,那么需要在  maven依赖里面加上

        
			org.springframework.boot
			spring-boot-starter-web
		

 

启动成功截图如下:

SpringBoot 系列-2 SpringBoot demo_第4张图片

我们可以看到他内置默认的web-server 是tomcat . 这时候我们就可以在浏览器输入 http://localhost:8080/ 访问了。

你可能感兴趣的:(springboot)