java创建一个spring boot项目

1、在这里插入图片描述
2、
在这里插入图片描述
3、
在这里插入图片描述
4、
pom文件中导入依赖:

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

com.net
day01_SpringBootQuickStart
1.0-SNAPSHOT



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



org.springframework.boot
spring-boot-devtools


在这里插入图片描述
5、
在src下main下的java中创建com.net.controller包,在controller下创建HelloController.java

package com.net.controller;
import org.omg.CORBA.PUBLIC_MEMBER;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@RequestMapping(“/hello”)
@Controller
public class HelloController {

@RequestMapping("/sayHello")
public @ResponseBody String sayHello(){
    return "hello Springboot哈哈";
}

}

在这里插入图片描述
6、在com.net在创建启动类:HelloSpringBootApplicationContext
注意:启动类一定是创建在com.net下

package com.net;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class HelloSpringBootApplicationContext {

public static void main(String[] args) {
    SpringApplication.run(HelloSpringBootApplicationContext.class);
}

}

在这里插入图片描述
7、
启动springboot项目
在这里插入图片描述
在浏览器中输入:
http://localhost:8080/hello/sayHello
然后按回车键
在这里插入图片描述
这样我们第一个spring boot项目就创建好了!!!!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值