차근차근
egov 전자정부프레임워크 sample mapper 설정 변경 본문
반응형
context-mapper.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
<!-- SqlSession setup for MyBatis Database Layer -->
<property name="dataSource" ref="dataSource" />
<property name="configLocation" value="classpath:/egovframework/sqlmap/example/sql-mapper-config.xml" />
<property name="mapperLocations" value="classpath:/egovframework/sqlmap/example/mappers/*.xml" />
</bean>
<!-- MapperConfigurer setup for MyBatis Database Layer with @Mapper("deptMapper") in DeptMapper Interface -->
<!--<property name="basePackage" value="egovframework.example.sample.service.impl" />-->
</bean>
</beans>
|
<property name="basePackage" value="egovframework.**.**.service.impl" /> 로 변경
반응형
'개발' 카테고리의 다른 글
자바 리스트 버블정렬 (0) | 2020.02.12 |
---|---|
이클립스 git revert 하는법 (0) | 2019.12.11 |
이클립스 git igonre 해제,취소 (0) | 2019.12.11 |
egov 전자정부프레임워크 스프링 파일업로드 설정 (0) | 2019.12.11 |
egov 전자정부프레임워크 스프링 ajax 설정 (0) | 2019.12.11 |
Comments