목록1ㅣ (1)
hello world
다중 디비 접속 Annotation으로 다중 디비 구분하기
스프링에서 mysql 디비서버1 과 oracle 디비서버2에 접속할수있도록 해야할때 어노테이션을 활용하여 디비접속을 구분할 수 있다. 1. 아래 인터페이스를 만들어 OracleMapper 어노테이션을 생성 package com.base.component; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.springframework.stereotype.Component; @Targ..
WEB/Spring .Spring Boot
2022. 1. 10. 14:22