Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 자바
- jsp
- 데이터베이스
- 정보처리기사
- 오라클
- rinux
- 이것이 자바다
- ciscopacket
- Java
- NCS
- javaee
- Oracle
- 네트워크관리사
- VLAN
- autoset
- jsp연결
- 라우터
- php
- 리눅스
- 원형그래프
- html
- ospf
- Cisco
- w3school
- 정처기필기
- sql
- cisco packet
- 버추얼머신
- 네트워크
- 참조타입
Archives
- Today
- Total
기록해! 정리해!
다중 mapper 설정하기 본문
[방법1. application.properties 를 이용하는 방법 ]
#### 다중 mapper 설정하기
mybatis.mapper-locations=classpath:mapper/**/*.xml
[ 방법 2 . 클래스를 만들어 사용하는 방법 ]
package com.majustory;
import javax.sql.DataSource;
import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.mybatis.spring.SqlSessionTemplate;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@Configuration
@MapperScan(basePackages="com.majustory")
@EnableTransactionManagement
public class DatabaseConfig {
@Bean
public SqlSessionFactory sqlSessionFactory(DataSource dataSource ) throws Exception {
SqlSessionFactoryBean sqlSessionFactory = new SqlSessionFactoryBean();
sqlSessionFactory.setDataSource(dataSource);
PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
sqlSessionFactory.setMapperLocations(resolver.getResource("classpath:mapper/Board-Mapper.xml"));
return sqlSessionFactory.getObject();
}
@Bean
public SqlSessionTemplate sqlSessionTemplate(SqlSessionFactory sqlSessionFactory) throws Exception{
final SqlSessionTemplate sqlSessionTemplate = new SqlSessionTemplate(sqlSessionFactory);
return sqlSessionTemplate;
}
}
'SpringBoot' 카테고리의 다른 글
myBatis2 (1) (0) | 2022.10.13 |
---|---|
myBatis (0) | 2022.10.11 |
MyBatis 사용하기 (0) | 2022.10.11 |
eclipse web developer tools 3.27 + MyBatis 다운 (0) | 2022.10.11 |
VO 객체를 리턴하는 경우 --getBoard / List 컬렉션을 리턴하는 경우 -- getBoardList (0) | 2022.10.11 |
Comments