SpringBoot
-
Spring Boot TestSpring 2021. 2. 9. 16:20
스프링부트 테스트 에 대하여 알아보자 참고블로그 brunch.co.kr/@springboot/207 참고 이전포스팅 hodolee246.tistory.com/60 Spring Boot Test Dependency spring-boot-test : 핵심 기능 포함 spring-boot-test-autoconfigure : 테스트를 위한 AutoConfiguration 제공 Spring Test, Spring Boot Test : 스프링 부트를 위한 유틸 및 통합 테스트 지원 AssertJ : 유창한 Assertion library Hamcrest : libarary에 잘 어울리는 오브젝트(constraints or predicates) Mockito : 자바 mocking framework JSONasse..
-
Spring Boot DB 오류해결Spring 2020. 1. 20. 15:07
0. Github https://github.com/hodolee246/on-my-own/tree/master/DBConfig 1. 개요 Spring Boot 프로젝트에서 오류 원인 및 해결방법 "Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class" ("데이터 소스를 구성하지 못하였습니다.") 2. 문제 및 원인 Maven 기준 pom.xml에 데이터베이스를 사용하기 위한 dependency가 존재하는 경우 @SpringBootApplication 에서 자동으로..