SpringBoot-如何开始使用

1.在idea创建spring ininitializr项目,然后一直下一步创建成功

2.运行DemoApplication.java效果如下

SpringBoot-如何开始使用_第1张图片

3.实现hello world

 学习任何一门语句或者框架,第一个打印都是Hello World,因此,我们使用SpringBoot官网下载的Demo实现一下,如何显示Hello World

    在pom.xml中添加:

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

    

   个人建立一个com.example.demo.controller,实现一个HelloWorld类:

@RestController
public class HelloWorld {

    @RequestMapping("/hello")
    public String Hello(String name) {
        return "hello" + name;

    }
    
    @RequestMapping("/haha")
    public String haha(String name) {
        return "haha" + name;

    }
}

运行代码之后浏览器访问http://localhost:8080/hello?name=World

如下

在这段代码中用@RequestMapping将 请求映射到用了 @RequestMapping 注解的方法上面,然后执行该方法,返回结果在浏览器中显示出来

你可能感兴趣的:(JavaEE,SpringBoot)