欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring-boot 起步

程序员文章站 2024-02-15 09:57:40
...

spring boot 起步

新建工程

spring-boot 起步

spring-boot 起步

spring-boot 起步

生成的maven工程

spring-boot 起步

pom.xml文件

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

HelloWorldController


@RestController
@EnableAutoConfiguration
public class HelloWorldController {

    @RequestMapping("/hello")
    public String hello(){
        return "hello spring boot";
    }
}

项目启动

运行DemoApplication.java中的main方法就行:

@SpringBootApplication
public class DemoApplication {

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

访问

http://localhost:8080/hello