참고용 스프링부트 Reference 페이지

 

Spring Boot Reference Guide

This section dives into the details of Spring Boot. Here you can learn about the key features that you may want to use and customize. If you have not already done so, you might want to read the "Part II, “Getting Started”" and "Part III, “Using Spr

docs.spring.io


https://start.spring.io/

아래 방법을 보기전에 위 사이트에서 간편하게 만들 수도 있습니다.  생성뒤에 인텔리제이나 다른 툴에서 다운받은 위 사이트에서 생성된 스프링부트프로젝트를 오픈하면 아래 방법을 건너 뛸 수 있습니다.

 


 

 

첫번째 인텔리제이를 실행시키고 상단오른쪽에 new project를 클릭

 

두번째 maven을 클릭후  하단 오른쪽에 next을 눌러 프로젝트명을 설정해주고 만든다.

세번째 pom.xml 파일이 먼저 화면이 나오는데 드래그된 properties를 삭제해준다.

 

네번째 아래 코드를 추가해준다.

<!-- Inherit defaults from Spring Boot -->
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.0.3.RELEASE</version>
	</parent>

	<!-- Add typical dependencies for a web application -->
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
	</dependencies>

	<!-- Package as an executable jar -->
	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

다섯번째  src > main >java > packate생성 후 javaClass생성해준다. 

여섯번째 @springBootApplication 어노테이션을 추가 main함수를 만든다.

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

일곱번째 만든 javaClass를 오른쪽클릭 후 run 'Application'을 클릭 후 콘솔에 찍힌 번호로 접속해보자  8080이니깐 localhost:8080/ 을 접속하면 아래 화면이 나오면 정상

 

 

복사했습니다!