상세 컨텐츠

본문 제목

ch1.객체지향

패캠스프링/part3._스프링입문(part3)

by hippo0207 2022. 7. 23. 22:57

본문

https://start.spring.io/

 

IntelliJ IDEA Community를 이용한 Springboot 개발 시작 . 스프링부트란

스프링부트에 대해서 이미 너무 많은 글들이 있어 거창하게 설명할 필요가 없을 거 같아 간략하게 알아볼게요. ■ 스프링부트 . springboot 조금 복잡하고 무거운 스프링 프레임워크를 쉽게 이용하

sidepower.tistory.com

https://sidepower.tistory.com/352

 

IntelliJ IDEA Community를 이용한 Springboot 개발 시작 . 스프링부트란

스프링부트에 대해서 이미 너무 많은 글들이 있어 거창하게 설명할 필요가 없을 거 같아 간략하게 알아볼게요. ■ 스프링부트 . springboot 조금 복잡하고 무거운 스프링 프레임워크를 쉽게 이용하

sidepower.tistory.com

강사 지혼자 유료버전으로 처 만든다 슈벌탱 >> 위사이트로 셀프로 만들어보기

plugins {
	id 'org.springframework.boot' version '2.7.2'
	id 'io.spring.dependency-management' version '1.0.12.RELEASE'
	id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'

configurations {
	compileOnly {
		extendsFrom annotationProcessor
	}
}

repositories {
	mavenCentral()
}

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
	implementation 'org.springframework.boot:spring-boot-starter-data-redis'
	implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
	implementation 'org.springframework.boot:spring-boot-starter-web'
	implementation 'org.springframework.boot:spring-boot-starter-web-services'
	implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.2'

	annotationProcessor 'org.projectlombok:lombok'
	compileOnly 'org.projectlombok:lombok'

	developmentOnly 'org.springframework.boot:spring-boot-devtools'
	runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
	annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'

	testImplementation 'org.springframework.boot:spring-boot-starter-test'

	runtimeOnly 'com.h2database:h2'

}

tasks.named('test') {
	useJUnitPlatform()
}

두개 더 넣었음

 

02.~05 객체지향이란, 4가지 핵심요소, 설계 5원칙, POJO

https://github.com/Youngju-Jang/fastcampus-springboot-introduction/blob/master/01.%20%EA%B0%9D%EC%B2%B4%EC%A7%80%ED%96%A5/%EA%B0%95%EC%9D%98%EC%9E%90%EB%A3%8C/01.%20%EA%B0%9D%EC%B2%B4%EC%A7%80%ED%96%A5%EC%9D%B4%EB%9E%80.pdf

 

GitHub - Youngju-Jang/fastcampus-springboot-introduction: 패스트 캠퍼스 스프링 부트 입문

패스트 캠퍼스 스프링 부트 입문. Contribute to Youngju-Jang/fastcampus-springboot-introduction development by creating an account on GitHub.

github.com

 

관련글 더보기

댓글 영역