Eclipse에서 SpringBoot를 움직여 보았습니다.

참고



Spring의 공식 페이지의 「Spring Quickstart Guide」를 참고로 해 보았다.
htps : // sp 인 g. 이오 / 쿠이 cks rt

주의



움직이는지 확인하기위한 프로그램이기 때문에
Main의 클래스에 라우팅 처리나 Controller 설정이라든지 버리고 있지만
실제로는 이런 쓰기는 하지 않습니다.

제대로 레이어 구성을 고려하여 만들어 봅시다.

환경


  • Eclipse 2020 Windows 64bit
  • Spring Boot

  • Spring 프로젝트 만들기



    공식 프로젝트 생성 페이지 에 취향에 맞게 발전.

  • Gradle
  • Maven의 pom 파일은 성에 맞지 않기 때문에 빌드 시스템은 Gradle을 선택

  • Java 8
  • Kotlin도 신경이 쓰이지만 Java
  • Version은 기본 설정입니다

  • Spring Boot 2.2.6
  • 이것은 적용 가능

  • Packaging Jar
  • 웹이라는 것을 생각하면 War이지만 시험에 Jar를 선택


  • GENERATE 버튼을 누르면 프로젝트가 zip으로 다운로드된다.

    Eclipse로 프로젝트 가져오기



    Gradle 프로젝트 가져오기





    다운로드한 폴더 지정





    가져온





    필요한 라이브러리라든지 다운로드되어 빌드도 마음대로 행해져 문제 없으면 이런 나온다.


    실행





    Spring Boot가 시작되면 이런 느낌


    http://localhost-8080.com/ 방문.
    아직 라우팅 처리 쓰지 않았기 때문에 "Whitelabel Error Page"라는 에러가 나온다.


    라우팅 처리 만들기



    프로젝트에 들어 있는 메인 클래스에 라우팅 처리를 추가한다.


    GET 요청으로 요청 매개변수 검색


    package com.pakhuncho.hello;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RequestParam;
    import org.springframework.web.bind.annotation.RestController;
    
    @SpringBootApplication
    @RestController
    public class HelloApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(HelloApplication.class, args);
        }
    
        @GetMapping("/hello")
        public String hello(@RequestParam(value = "name", defaultValue = "World") String name) {
            return String.format("Hello %s!", name);
        }
    }
    

    변경된 애플리케이션을 재배치합니다.


    http://localhost:8080/hello 으로 접속한다.


    http://localhost:8080/hello?name=pakhuncho 으로 접속한다.


    http://localhost:8080/hello?name=파쿠파쿠 으로 이동


    경로 매개변수 얻기


    package com.pakhuncho.hello;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @SpringBootApplication
    @RestController
    public class HelloApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(HelloApplication.class, args);
        }
    
        @RequestMapping("/hello/{name}")
        public String hello(@PathVariable String name) {
            return String.format("Hello %s!", name);
        }
    }
    

    http://localhost:8080/hello/파쿠파쿠 으로 이동

    좋은 웹페이지 즐겨찾기