2. springboot restapi 프로젝트 생성


Intellij로 스프링부트를 활용하여 restapi 프로젝트 생성



개발 환경 및 내용

  • OS: Window 10
  • Dev Tool: Intellij - 2019.2.3
  • JDK: 1.8(_221)
  • JAVA: 8
  • Framework: Springboot v2.1.8
  • Build Tool: Gradle v3
  • RDBMS: MariaDB

참고 URL



Intellij로 스프링부트 프로젝트 생성

상단 메뉴 > File > New > Project

intellj-project-create-s1

intellj-project-create-s2

intellj-project-create-s3

intellj-project-create-s4



NeoApplication.java에서 아래와 같이 mybatis dependency를 추가했지만 datasource를 설정안했기에 추가한다.

그리고 프로젝트를 실행하면 된다.

@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})

NeoApplication.java

@SpringBootApplication
@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
@RestController
public class NeoApplication {

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

    @GetMapping("/hello")
    public String hello() {
        return "Hello";
    }
}

intellj-project-create-s5




[참고]