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()
}
두개 더 넣었음
GitHub - Youngju-Jang/fastcampus-springboot-introduction: 패스트 캠퍼스 스프링 부트 입문
패스트 캠퍼스 스프링 부트 입문. Contribute to Youngju-Jang/fastcampus-springboot-introduction development by creating an account on GitHub.
github.com
ch2.6 옵저버, 2.7 파사드, 2.8 전략 패턴 (0) | 2022.07.28 |
---|---|
Tip. loading time알아내기 (0) | 2022.07.27 |
ch2.4프록시패턴 & ch2.5 데코레이터 패턴 (0) | 2022.07.27 |
ch2.2 싱글톤패턴 && 2.3 어댑터 패턴 (0) | 2022.07.27 |
ch2. 디자인 패턴 (0) | 2022.07.26 |
댓글 영역