Skip to content

Commit

Permalink
chores
Browse files Browse the repository at this point in the history
  • Loading branch information
suzieep committed Aug 6, 2023
1 parent c32a8c9 commit 26b7a1f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions SpringDB/230710_DB2_section1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# SpringDB2/Section1) 데이터 접근 기술 - 시작

## Profile

spring.profiles.active = local -> 로컬이라는 프로필로 동작할게, local만 Bean 등록해!(없으면 default)

```java
@Profile("local")
```

로컬, 운영 환경, 테스트 실행 등등 다양한 환경에 따라서 다른 설정을 할 때 사용하는 정보

interface를 테스트 하자! -> 향후 다른 구현체로 변경되었을 때 해당 구현체가 잘 동작하는지 같은 테스트로 편리하게 검증 가능

item... 알아보기

0 comments on commit 26b7a1f

Please sign in to comment.