복습 ARCHIVE/기타

[Spring Boot] 기본 설명 및 프로젝트 생성 / IntelliJ, sts-

SummerON 2021. 7. 6. 14:20

스프링 부트 

- 스프링 프레임워크를 기반으로 한 개발 플랫폼

- 단독 실행 가능한 스프링 애플리케이션 생성

- 프로젝트 환경을 구축할 때 필요한 톰캣, 제티, 언더토우 내장

- XML 기반설정이나 코드 엇이 환경 설정을 자동화 기능

- 스프링 프레임워크 개발 접근성 용이

 

개발 단계

IntelliJ IDEA 30일 체험판 설치

설치방법.pdf
0.34MB

 

Spring Boot is a lightweight and open-source java-based framework that is used for creating stand-alone and production-grade Spring-based applications. Initially released in 2002, Spring Boot leverages the Spring platform and third party libraries to enable the developers to get started with munimum hassle.

A few advantages offered by the Spring Boot framework are:

  • Helps avoid complex XML configuration in Spring
  • Microservices-ready framework
  • Probides powerful batch processing
  • Helps manage REST endpoints
  • Eases dependenct management

https://spring.io/project/spring-boot 

새 프로젝트

프로젝트 초기 설정
stst

sts

이것도 스프링 부트 쓰는 방법 

만약 두 번 실행되서 문제가 생기면

terminal 명령

netstat -ano                                         사용 중인 포트/PID 확인 명령

taskkill /f /pid [실행서버 포트 pid : 14816]    강제 실행 종료

 

파일 확인하기

cd 경로     위치 접속

 

cd..           한단계 상위 촐더로 이동 

cd\          최상위 위치로 이동 

 ex) c:\test > cd\   ==>   c:\)

cd 폴더명       현재 위치의 하위 폴더로 이동 

 ex) c:\ > cd test   ==>   c:\test>) 

md               새로운 하위 폴더 생성 

 ex) c:\ > md test2   ==>   c:\내에 test2 폴더가 생성)

 

dir     현재 폴더 내의 내용 확인 

dir /s    현재 폴더의 하위 폴더까지 

dir /p     한 페이지씩 항목을 확인 

 

Windows Maria DB 설치 및 Spring Data JPA 프로젝트 생성.pdf
0.72MB