Breadcrumbs blog-code /springboot-test / README.mdTop File metadata and controls Preview Code Blame 372 lines (296 loc) · 14.1 KB Raw SpringBoot 1.4 Test 사용하기 공식문서를 참고하며 기록하는 SpringBoot Test 적용하기 TDD를 기반으...
boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class HelpYounApplication { public static void main(String[] args) { SpringApplication.run(HelpYounApplication.class, args); } } 1 change: 1 addition & 0 deletions 1 src/main/...
정치 경제 사회 TV 라지오 생방송 스포츠 생활 려행 드론영상 쇼핑 登录 | 注册 TV TV 홈 | TV 방송정보 | TV 프로그램 | 특집프로그램 | 음력설야회 | 소년아동인터넷음력설야회 | TV하...
- [Spring Boot 간단 정리](https://github.com/jojoldu/blog-code/tree/master/compareboot) - [Spring Boot 1.4.0으로 진행하는 TDD](https://github.com/jojoldu/blog-code/tree/master/springboot-test) 203 changes: 198 additions & 5 deletions 203 spring-yml-import/README.md...
Github URL:https://github.com/G1Kwon/freelec-springboot2-webservice.git 오류 로그 Error while extracting response for type [class java.lang.Long] and content type [application/json;charset=UTF-8]; nested exception is org.springframework.http.converter.HttpMessageNotReadableException: JSON...
Spring Boot: 2.4.2 Project Metadata: 자신이 원하는 것을 설정하면 된다. Packaging: Jar Java Version: 11 Dependencies Spring Boot DevTools Lombok Spring Configuration Processor Spring Web Spring Data JPA Spring Data JDBC Spring Boot Actuator 나머지는 필요하면...
runtime('org.springframework.boot:spring-boot-devtools') testCompile('org.springframework.boot:spring-boot-starter-test') } ``` application.yml ```yml spring: datasource: platform: h2 h2: console: enabled: true path: /h2-console # h2 db 웹 클라이언트 접속 url devtools: ...
compile('org.springframework.boot:spring-boot-starter-web') compile('org.springframework.boot:spring-boot-starter-thymeleaf') runtime('com.h2database:h2') compileOnly('org.projectlombok:lombok') testCompile('org.springframework.boot:spring-boot-starter-test') testCompile('org.springframework.secur...
스케줄링에서 사용하는 Cron 표현식 설정 cron = "* * * * * *" 형태로 표현 (1) *: all (2) ?: 특정 값이 없는 요일, 날짜 (3) -: 범위 값 지정 (4) ,: 여러 값 지정 (5) /: 초기값과 증가...
spring-boot 3.x 마이크로서비스 패턴: 헬쓰 체크 패턴, 추적 및 로깅 패턴, 보안 패턴 도커를 이용한 로컬 개발 환경 설정: MySQL, Kafka 등 JPA, MySQL/H2 driver, QueryDSL, JPA Specification 설정 ...