IntelliJ IDEA创建Maven工程

2021-08-12  本文已影响0人  iOS_Ken

创建Maven工程

image.png image.png

注意:如果选择Spring Initializr可以自动配置项目的基础的依赖

image.png
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.3.RELEASE</version>
    </parent>
image.png

由于需要构建web项目于是依赖修改为web

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
        <version>2.0.3.RELEASE</version>
    </parent>
@EnableAutoConfiguration
@ComponentScan
public class App {
    public static void main(String[] args) {
        SpringApplication.run(App.class,args);
    }
}
@RestController
public class HelloController {
    @GetMapping("/hello")
    public String hello(){
        return "hello spring boot";
    }
}

以上的注解在以后发布的文章再进行统一讲解

image.png image.png
上一篇 下一篇

猜你喜欢

热点阅读