开始学习springboot的第一天

刚开始学习springboot的第一天,按照惯例首先helloworld,

开发准备:

    1.开发环境jdk1.8

    2.开发工具eclipse

    3.项目管理工具maven

Hello World 之新建project

1.创建Maven Project (spring-boot-hello)

开始学习springboot的第一天_第1张图片

Hello World 之pom.xml



org.springframework.boot
spring-boot-starter-parent
1.4.1.RELEASE





java.version 指定jdk版本号:
1.8


添加spring-boot-starter-web依赖

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


然后maven→update project

Hello World 之coding

Codeing 步骤:

新建一个Controller类

开始学习springboot的第一天_第2张图片

新建启动类(App – Main方法)

开始学习springboot的第一天_第3张图片

然后进行Run As

但是进行run as是出现一个 错误: 找不到或无法加载主类 nyist.edu.cn.App

然后在菜单栏里 project→Clean

开始学习springboot的第一天_第4张图片

然后程序就可以继续运行啦

开始学习springboot的第一天_第5张图片

在浏览器中输入 http:127.0.0.1:8080/hello

开始学习springboot的第一天_第6张图片

第一个helloworld完成

你可能感兴趣的:(springboot)