[Spring] 스프링 Mybatis 다중 디비 연결 (디비 연결 2개 이상)
프로젝트 폴더 구조는 다음과 같다. Mybatis를 이용해 4개의 file, netstat, process, register 데이터베이스를 연동시킬 예정이다. file, netstat, process, register 패키지 안에 domain class 파일, config class 파일, mapper interface 파일을 만들어줬다. domain 파일은 데이터베이스에 전달해줄 디폴트 값이며, config 파일은 데이터베이스 설정 파일이고, mapper 인터페이스 파일은 실제 쿼리문이 담긴 mapper.xml을 추상화시키기 위한 파일이다. 제일 중요한 파일은 당연히 각 데이터베이스의 config 파일이다. // RegisterConfig.class (register 데이터베이스 config 파일) @..
2022. 4. 18.