(IntelliJ + gradle) Spring Boot에서 Hello World
4302 단어 spring-bootgradleIntelliJ초보자자바
소개
IntelliJ에서 SpringBoot를 개발하고 싶습니다.
현재 관련된 개발 프로젝트가 이 조합이므로 구조를 공부하기 위해 구축.
그 중 mysql과 연계하는 RESTAPI를 만들어보고 싶다.
프로젝트 만들기
아래 링크 된 Spring Initializr에서 프로젝트의 병아리를 만듭니다.
htps : // s rt. sp 링 g. 이오/
설정 후
설정이 완료되면 화면 하단의 "Generate the project"버튼을 누르십시오.
프로젝트 zip이 다운로드되므로 압축을 풉니 다.
프로젝트 가져오기
프로그램에서 열기 → IntelliJ를 선택하십시오
Hello World를 표시하도록 편집
DemoApplication.java
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
public class DemoApplication {
@RequestMapping("/")
String index(){
return "Hello World!";
}
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
부팅
Gradle 창에서 Tasks → application → bootRun을 실행합니다.
실행 후 콘솔
브라우저에서 확인
http://localhost:8080/
에 연결.
Hello World가 출력되었습니다!
Reference
이 문제에 관하여((IntelliJ + gradle) Spring Boot에서 Hello World), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/aky100200/items/e76eece582d2248a2d0c
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
http://localhost:8080/
에 연결.Hello World가 출력되었습니다!
Reference
이 문제에 관하여((IntelliJ + gradle) Spring Boot에서 Hello World), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/aky100200/items/e76eece582d2248a2d0c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)